FaceDataVo.java
1.02 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
package com.viontech.vo;
import java.util.Map;
public class FaceDataVo {
private String state;
private Map rect;
private String with_hats;
private String sex;
private Map upbody;
private Map lobody;
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public Map getRect() {
return rect;
}
public void setRect(Map rect) {
this.rect = rect;
}
public String getWith_hats() {
return with_hats;
}
public void setWith_hats(String with_hats) {
this.with_hats = with_hats;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public Map getUpbody() {
return upbody;
}
public void setUpbody(Map upbody) {
this.upbody = upbody;
}
public Map getLobody() {
return lobody;
}
public void setLobody(Map lobody) {
this.lobody = lobody;
}
}