潘志宝
2024-12-15 bbe7acfbe5a4c08d6edc91eaf81dcecf9d630e18
提交 | 用户 | 时间
a63a4f 1 package com.iailab.module.data.ind.data.entity;
2
3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import lombok.Data;
7
8 import java.io.Serializable;
9
10 /**
11  * 指标数据集字段
12  *
13  * @author PanZhibao
14  * @Description
15  * @createTime 2024年09月10日
16  */
17 @Data
18 @TableName("t_ind_data_set_field")
19 public class IndDataSetFieldEntity implements Serializable {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * 主键
24      */
25     @TableId(value = "id",type = IdType.INPUT)
26     private String id;
27
28     /**
29      * 数据集ID
30      */
31     private String dataSetId;
32
33     /**
34      * 英文名
35      */
36     private String fieldCode;
37
38     /**
39      * 中文名
40      */
41     private String fieldName;
42
43     /**
44      * 数据类型
45      */
46     private String fieldType;
47
48     /**
49      * 排序
50      */
51     private Integer sort;
52 }