提交 | 用户 | 时间
|
217043
|
1 |
package com.iailab.module.data.arc.vo; |
3ca415
|
2 |
|
D |
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
5 |
import com.iailab.framework.common.pojo.PageParam; |
|
6 |
import lombok.Data; |
|
7 |
import lombok.EqualsAndHashCode; |
|
8 |
import lombok.ToString; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author lirm |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月2日 |
|
14 |
*/ |
|
15 |
@Data |
|
16 |
@EqualsAndHashCode(callSuper = true) |
|
17 |
@ToString(callSuper = true) |
217043
|
18 |
public class ArcSettingPageReqVO extends PageParam { |
3ca415
|
19 |
|
D |
20 |
/** |
|
21 |
* id |
|
22 |
*/ |
|
23 |
@TableId(type = IdType.ASSIGN_UUID) |
|
24 |
private String id; |
|
25 |
|
|
26 |
/** |
|
27 |
* 名称 |
|
28 |
*/ |
|
29 |
private String name; |
|
30 |
|
|
31 |
/** |
|
32 |
* 归档周期(shift、day、month、year) |
|
33 |
*/ |
|
34 |
private String type; |
|
35 |
|
|
36 |
/** |
|
37 |
* 归档点位 |
|
38 |
*/ |
|
39 |
private String point; |
|
40 |
|
|
41 |
/** |
|
42 |
* 计算方法(none、sum、diff、avg) |
|
43 |
*/ |
|
44 |
private String calculate; |
|
45 |
|
|
46 |
/** |
|
47 |
* 是否启用 |
|
48 |
*/ |
|
49 |
private String isEnable; |
|
50 |
|
|
51 |
/** |
|
52 |
* 创建时间 |
|
53 |
*/ |
|
54 |
private String createTime; |
|
55 |
|
|
56 |
/** |
|
57 |
* 更新时间 |
|
58 |
*/ |
|
59 |
private String updateTime; |
|
60 |
} |