FaceDataContent.java
2.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
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 FaceDataContent {
/**
* 设备id
*/
private Long deviceId;
/**
* 通道id
*/
private Long channelId;
/**
* 出入口id
*/
private Long gateId;
/**
* 设备序列号
*/
private String deviceSerialnum;
/**
* 通道序列号
*/
private String channelSerialnum;
/**
* 人员类型(0 新客 1 二次进店 2 多次进店 9 店员)
*/
private Integer personType;
/**
* 人脸图片1
*/
private String facePic;
/**
* 人体图片
*/
private String bodyPic;
/**
* 心情
*/
private Integer mood;
/**
* 年龄
*/
private Integer age;
/**
* 性别
*/
private Integer gender;
/**
* 方向
*/
private Integer direction;
/**
* 统计时间
*/
@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 Long mallId;
private Long accountId;
private String personUnid;
/**
* 处理进度表
*/
private Integer status;
/**
* 轨迹信息文件存储路径
*/
private String trackInfo;
/**
* 轨迹时间
*/
private Integer trackTime;
/**
* 开心指数
*/
private Integer happyConf;
/**
* 历史到店次数
*/
private Integer historyArrivalCount;
/**
* 今日到店次数
*/
// private Integer todayArrivalCount;
/**
* 原始抓拍id
*/
private String unid;
private Float faceScore;
private Integer faceType;
private Integer facePicNum;
private Integer bodyPicNum;
private Integer faceFeatureType;
private Integer bodyFeatureType;
private Integer bodyType;
private Integer intersectX;
private Integer intersectY;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date intersectTime;
/**
* 0:儿童 1:成人 -1:未知
*/
private Integer ageGroup;
/**
* 是否是穿堂客流
*/
// private Integer isAcross;
/**
* 持续时长,单位秒
*/
private Long duration;
/**
* 支付方式 0:未支付 1:pos支付 2:手机支付
*/
private Integer payType;
/**
* 是否提货
*/
private Integer pickUpGoods;
/**
* 事件图片
*/
private String eventImage;
/**
* 事件图片头脚坐标
*/
private String eventCoordinate;
/**
* 收银事件结伴人数
*/
private Integer togetherCount;
private String eventVideo;
}