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