123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.fdkankan.contro.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableLogic;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- *
- * </p>
- *
- * @author
- * @since 2022-12-16
- */
- @Getter
- @Setter
- @TableName("t_scene_asyn_oper_log")
- public class SceneAsynOperLog implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 场景码
- */
- @TableField("num")
- private String num;
- /**
- * 操作类型(upload-上传,download-下载)
- */
- @TableField("oper_type")
- private String operType;
- /**
- * 模块名称
- */
- @TableField("module")
- private String module;
- /**
- * 功能
- */
- @TableField("func")
- private String func;
- /**
- * 版本号
- */
- @TableField("version")
- private Integer version;
- /**
- * 状态(0-处理中,1-处理完成,2-处理失败)
- */
- @TableField("state")
- private Integer state;
- /**
- * 下载链接
- */
- @TableField("url")
- private String url;
- /**
- * 是否需要弹窗(0-否,1-是)
- */
- @TableField("pop")
- private Boolean pop;
- /**
- * 扩展信息
- */
- @TableField("ext_data")
- private String extData;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 修改时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * 状态(A-有效,I-无效)
- */
- @TableField("rec_status")
- @TableLogic(value = "A", delval = "I")
- private String recStatus;
- }
|