FaceWaterRecoder.java
2.01 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
package com.sincere.haikangface.bean;
import java.io.Serializable;
public class FaceWaterRecoder implements Serializable {
private String deviceId;
private int deviceType;
private String minorType;
private String content;
private String majorType;
private String cardNo;
private String time;
private String systime;
public String getSystime() {
return systime;
}
public void setSystime(String systime) {
this.systime = systime;
}
public String getCardNo() {
return cardNo;
}
public void setCardNo(String cardNo) {
this.cardNo = cardNo;
}
public String getDeviceId() {
return deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public int getDeviceType() {
return deviceType;
}
public void setDeviceType(int deviceType) {
this.deviceType = deviceType;
}
public String getMinorType() {
return minorType;
}
public void setMinorType(String minorType) {
this.minorType = minorType;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getMajorType() {
return majorType;
}
public void setMajorType(String majorType) {
this.majorType = majorType;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
@Override
public String toString() {
return "FaceWaterRecoder{" +
"deviceId='" + deviceId + '\'' +
", deviceType=" + deviceType +
", minorType='" + minorType + '\'' +
", content='" + content + '\'' +
", majorType='" + majorType + '\'' +
", cardNo='" + cardNo + '\'' +
", time='" + time + '\'' +
", systime='" + systime + '\'' +
'}';
}
}