Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
提交 | 用户 | 时间
8c1646 1 package com.iailab.module.data.plan.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 import java.util.Date;
10
11 /**
12  * 指标数据集
13  *
14  * @author PanZhibao
15  * @Description
16  * @createTime 2024年09月10日
17  */
18 @Data
19 @TableName("t_plan_data_set")
20 public class PlanDataSetEntity implements Serializable {
21     private static final long serialVersionUID = 1L;
22
23     /**
24      * 主键
25      */
26     @TableId(value = "id",type = IdType.INPUT)
27     private String id;
28
29     /**
30      * 名称
31      */
32     private String name;
33
34     /**
35      * 数据源
36      */
37     private String dataSource;
38
39     /**
40      * 查询语句
41      */
42     private String querySql;
43
44     /**
45      * 备注
46      */
47     private String remark;
48
49     /**
50      * 排序
51      */
52     private Integer sort;
53
54     /**
55      * 创建者
56      */
57     private String creator;
58
59     /**
60      * 创建时间
61      */
62     private Date createTime;
63
64     /**
65      * 更新者
66      */
67     private String updater;
68
69     /**
70      * 更新时间
71      */
72     private Date updateTime;
73 }