ZoneCountData.java
1.17 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
package com.viontech.keliu.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;
import java.util.Date;
@Getter
@Setter
public class ZoneCountData {
/**
* 广场id
*/
private Long mallId;
/**
* 商户id
*/
private Long accountId;
/**
* 楼层id
*/
private Long floorId;
/**
* 区域id
*/
private Long zoneId;
/**
* 进入数量
*/
private Integer innum;
/**
* 出数量
*/
private Integer outnum;
/**
* 店外进人数
*/
private Integer outsideInnum;
/**
* 店外出人数
*/
private Integer outsideOutnum;
/**
* 统计时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date counttime;
/**
* 统计日期
*/
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date countdate;
/**
* 小时
*/
private Integer hour;
/**
* 铺位号
*/
private Long bunkNo;
/**
* 数据操作类型:insert:插入,update:更新
*/
private String operationType;
}