|
@@ -0,0 +1,105 @@
|
|
|
+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;
|
|
|
+
|
|
|
+
|
|
|
+}
|