PersonLabelContent.java
2.15 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
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 PersonLabelContent {
private Long accountId;
private Long mallId;
private String recognitionUnid;
@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 hairStyle;
/**
* 发色
*/
private Integer hairColor;
/**
* 帽子
*/
private Integer hat;
/**
* 帽子颜色
*/
private Integer hatColor;
/**
* 眼镜
*/
private Integer glasses;
/**
* 口罩
*/
private Integer mask;
/**
* 耳饰
*/
private Integer earring;
/**
* 上衣类型
*/
private Integer jacketType;
/**
* 上衣颜色
*/
private Integer jacketColor;
/**
* 下衣类型
*/
private Integer bottomsType;
/**
* 下衣颜色
*/
private Integer bottomsColor;
/**
* 套装类型
*/
private Integer suitType;
/**
* 套装颜色
*/
private Integer suitColor;
/**
* 衣服品牌
*/
private Integer clothingBrand;
/**
* 项链
*/
private Integer necklace;
/**
* 手表
*/
private Integer watch;
/**
* 手链
*/
private Integer bracelet;
/**
* 手机
*/
private Integer phone;
/**
* 背包
*/
private Integer rucksackType;
/**
* 背包颜色
*/
private Integer rucksackColor;
/**
* 拎包类型
*/
private Integer handbagType;
/**
* 拎包颜色
*/
private Integer handbagColor;
/**
* 提袋类型
*/
private Integer shoppingBagType;
/**
* 提袋颜色
*/
private Integer shoppingBagColor;
/**
* 鞋子类型
*/
private Integer shoeType;
/**
* 鞋子颜色
*/
private Integer shoeColor;
}