|
@@ -0,0 +1,58 @@
|
|
|
+package cn.cslg.pas.domain.business;
|
|
|
+
|
|
|
+import cn.cslg.pas.domain.BaseEntity;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author xiexiang
|
|
|
+ * @Date 2023/11/8
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@TableName("custom_field")
|
|
|
+public class CustomField extends BaseEntity<CustomField> {
|
|
|
+ /**
|
|
|
+ * 自定义栏位名称
|
|
|
+ */
|
|
|
+ @TableField(value = "name")
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告/专题库id
|
|
|
+ */
|
|
|
+ @TableField(value = "project_id")
|
|
|
+ private Integer projectId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 类型
|
|
|
+ */
|
|
|
+ @TableField(value = "type")
|
|
|
+ private Integer type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 值选择方式
|
|
|
+ */
|
|
|
+ @TableField(value = "choose_type")
|
|
|
+ private Boolean choose_type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 描述
|
|
|
+ */
|
|
|
+ @TableField(value = "description")
|
|
|
+ private String description;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建人
|
|
|
+ */
|
|
|
+ @TableField(value = "create_id")
|
|
|
+ private String createId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @TableField(value = "create_time")
|
|
|
+ private Date createTime;
|
|
|
+}
|