dengzedong
2025-02-27 6205c22a959fbb3b69735f34af8d3316c4082a5d
提交 | 用户 | 时间
217043 1 package com.iailab.module.data.arc.entity;
3205a2 2
D 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;
3ca415 9 import java.util.Date;
3205a2 10
D 11 @Data
12 @TableName("t_arc_setting")
217043 13 public class ArcSettingEntity implements Serializable {
3205a2 14
D 15     private static final long serialVersionUID = 1L;
16
17     /**
18      * id
19      */
20     @TableId(type = IdType.ASSIGN_UUID)
21     private String id;
22
23     /**
24      * 名称
25      */
26     private String name;
27
28     /**
29      * 归档周期(shift、day、month、year)
30      */
31     private String type;
32
33     /**
34      * 归档点位
35      */
36     private String point;
37
38     /**
39      * 计算方法(none、sum、diff、avg)
40      */
41     private String calculate;
42
43     /**
217043 44      * 排序
45      */
46     private Integer sort;
47
48     /**
3205a2 49      * 是否启用
D 50      */
51     private String isEnable;
52
53     /**
54      * 创建时间
55      */
3ca415 56     private Date createTime;
3205a2 57
D 58     /**
59      * 更新时间
60      */
3ca415 61     private Date updateTime;
3205a2 62 }