MallVO.java
1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package vion.vo.monitor;
import lombok.Getter;
import lombok.Setter;
import vion.model.monitor.EventRecord;
import vion.model.monitor.RAgentEvent;
import java.time.LocalDateTime;
import java.util.List;
/**
* 项目mall信息
*/
@Getter
@Setter
public class MallVO {
private Long id;
/**
* agent uid
*/
private String agentUid;
/**
* agent类型 1:store,2:mall
*/
private Short agentType;
/**
* 所属集团uid
*/
private String accountUid;
private String accountName;
/**
* mall unid
*/
private String uid;
/**
* mall名称
*/
private String name;
/**
* mall营业状态
*/
private Short status;
/**
* 是否关注 0:不关注 1:关注
*/
private Short attention;
/**
* 时区
*/
private String timeZone;
/**
* 设备数量
*/
private Integer deviceNum;
/**
* 营业时间字符串
*/
private String businessHourStr;
/**
* 备注
*/
private String remark;
private LocalDateTime createTime;
private LocalDateTime updateTime;
private List<EventRecord> eventRecordList;
private List<RAgentEvent> agentEventList;
/**
* 主机名
*/
private String hostname;
}