|
@@ -0,0 +1,81 @@
|
|
|
+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 2023-07-14
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@TableName("t_scene_cold_storage_log")
|
|
|
+public class SceneColdStorageLog implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @TableId(value = "id", type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 场景码
|
|
|
+ */
|
|
|
+ @TableField("num")
|
|
|
+ private String num;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 封存地址
|
|
|
+ */
|
|
|
+ @TableField("path")
|
|
|
+ private String path;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 操作类型(1-封存,2-解封存)
|
|
|
+ */
|
|
|
+ @TableField("type")
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 0-处理中,1-成功,-1-失败
|
|
|
+ */
|
|
|
+ @TableField("state")
|
|
|
+ private Integer state;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 失败原因
|
|
|
+ */
|
|
|
+ @TableField("reason")
|
|
|
+ private String reason;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @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;
|
|
|
+
|
|
|
+
|
|
|
+}
|