|
@@ -0,0 +1,53 @@
|
|
|
|
+package cn.cslg.pas.domain;
|
|
|
|
+
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
+import lombok.Data;
|
|
|
|
+import lombok.experimental.Accessors;
|
|
|
|
+
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * 权限系统 系统文件表实体类
|
|
|
|
+ *
|
|
|
|
+ * @Author chenyu
|
|
|
|
+ * @Date 2023/8/15
|
|
|
|
+ */
|
|
|
|
+@TableName(value = "PCS_TEST.SYSTEM_FILE")
|
|
|
|
+@Accessors(chain = true)
|
|
|
|
+@Data
|
|
|
|
+public class SystemFile implements Serializable {
|
|
|
|
+ @TableId(value = "ID", type = IdType.AUTO)
|
|
|
|
+ private Integer id;
|
|
|
|
+ @TableField(value = "GUID")
|
|
|
|
+ private String guid;
|
|
|
|
+ @TableField(value = "P_TYPE")
|
|
|
|
+ private Integer pType;
|
|
|
|
+ @TableField(value = "FILE_PATH")
|
|
|
|
+ private String url;
|
|
|
|
+ @TableField(value = "FILE_NAME")
|
|
|
|
+ private String fileName;
|
|
|
|
+ @TableField(value = "ORIGINAL_NAME")
|
|
|
|
+ private String oldName;
|
|
|
|
+ @TableField(value = "FILE_LENGTH")
|
|
|
|
+ private String fileSize;
|
|
|
|
+ @TableField(value = "IS_DELETE")
|
|
|
|
+ private Integer isDelete;
|
|
|
|
+ @TableField(value = "CREATE_ID")
|
|
|
|
+ private Integer createBy;
|
|
|
|
+ @TableField(value = "CREATE_TIME")
|
|
|
|
+ private Date createTime;
|
|
|
|
+ @TableField(value = "UPDATE_TIME")
|
|
|
|
+ private Date updateTime;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 文件对应的任务id
|
|
|
|
+ */
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private Integer taskId;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|