GateCountData.java
1.04 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
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 GateCountData {
/**
* 广场id
*/
private Long mallId;
/**
* 商户id
*/
private Long accountId;
/**
* 出入口id
*/
private Long gateId;
/**
* 进入数量
*/
private Integer innum;
/**
* 出数量
*/
private Integer outnum;
/**
* 统计日期
*/
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private Date countdate;
/**
* 统计时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date counttime;
private Integer hour;
/**
* 店外正向客流
*/
private Integer outsideInnum;
/**
* 店外反向客流
*/
private Integer outsideOutnum;
/**
* 数据操作类型:insert:插入,update:更新
*/
private String operationType;
}