XklAmpReportLocationEntity.java
3.16 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
package com.xkl.domain;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.sql.Timestamp;
/**
* 报告的location
*/
@Entity
@Table(name = "xkl_amp_report_location")
public class XklAmpReportLocationEntity {
// record id
@Id
@Column(name = "id")
private long id;
// AMP序列号
@Column(name = "AMPSerial")
private String AMPSerial;
// adminId
@Column(name = "admin_id")
private long adminId;
// reportId
@Column(name = "report_id")
private long reportId;
// ip
@Column(name = "ip")
private String IP;
//
@Column(name = "country")
private String country;
//
@Column(name = "province")
private String province;
//
@Column(name = "city")
private String city;
//
@Column(name = "district")
private String district;
// 检测时间
@Column(name = "checkup_time")
private Timestamp checkupTime;
// 上传时间
@Column(name = "upload_time")
private Timestamp uploadTime;
public XklAmpReportLocationEntity(String AMPSerial, long adminId, long reportId, String IP,
String country, String province, String city,
String district, Timestamp checkupTime, Timestamp uploadTime) {
this.AMPSerial = AMPSerial;
this.adminId = adminId;
this.reportId = reportId;
this.IP = IP;
this.country = country;
this.province = province;
this.city = city;
this.district = district;
this.checkupTime = checkupTime;
this.uploadTime = uploadTime;
}
public String getAMPSerial() {
return AMPSerial;
}
public void setAMPSerial(String AMPSerial) {
this.AMPSerial = AMPSerial;
}
public long getAdminId() {
return adminId;
}
public void setAdminId(long adminId) {
this.adminId = adminId;
}
public long getReportId() {
return reportId;
}
public void setReportId(long reportId) {
this.reportId = reportId;
}
public String getIP() {
return IP;
}
public void setIP(String IP) {
this.IP = IP;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public String getProvince() {
return province;
}
public void setProvince(String province) {
this.province = province;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getDistrict() {
return district;
}
public void setDistrict(String district) {
this.district = district;
}
public Timestamp getCheckupTime() {
return checkupTime;
}
public void setCheckupTime(Timestamp checkupTime) {
this.checkupTime = checkupTime;
}
public Timestamp getUploadTime() {
return uploadTime;
}
public void setUploadTime(Timestamp uploadTime) {
this.uploadTime = uploadTime;
}
}