StaffApartmentOnduty.java
4.5 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
184
185
186
187
188
189
190
package com.tianbo.warehouse.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
public class StaffApartmentOnduty {
private String id;
private String warchkeeper;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date handovershifttime;
private String publiclighting;
private String carpark;
private String campusafforestation;
private String firefightingequipment;
private String equipmentfacilities;
private String publicsanitation;
private String property;
private String securitydanger;
private String rests;
private String handovermatters;
private Date creatime;
private Integer userid;
private String remberk1;
private String remberk2;
private String remberk3;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getWarchkeeper() {
return warchkeeper;
}
public void setWarchkeeper(String warchkeeper) {
this.warchkeeper = warchkeeper == null ? null : warchkeeper.trim();
}
public Date getHandovershifttime() {
return handovershifttime;
}
public void setHandovershifttime(Date handovershifttime) {
this.handovershifttime = handovershifttime;
}
public String getPubliclighting() {
return publiclighting;
}
public void setPubliclighting(String publiclighting) {
this.publiclighting = publiclighting == null ? null : publiclighting.trim();
}
public String getCarpark() {
return carpark;
}
public void setCarpark(String carpark) {
this.carpark = carpark == null ? null : carpark.trim();
}
public String getCampusafforestation() {
return campusafforestation;
}
public void setCampusafforestation(String campusafforestation) {
this.campusafforestation = campusafforestation == null ? null : campusafforestation.trim();
}
public String getFirefightingequipment() {
return firefightingequipment;
}
public void setFirefightingequipment(String firefightingequipment) {
this.firefightingequipment = firefightingequipment == null ? null : firefightingequipment.trim();
}
public String getEquipmentfacilities() {
return equipmentfacilities;
}
public void setEquipmentfacilities(String equipmentfacilities) {
this.equipmentfacilities = equipmentfacilities == null ? null : equipmentfacilities.trim();
}
public String getPublicsanitation() {
return publicsanitation;
}
public void setPublicsanitation(String publicsanitation) {
this.publicsanitation = publicsanitation == null ? null : publicsanitation.trim();
}
public String getProperty() {
return property;
}
public void setProperty(String property) {
this.property = property == null ? null : property.trim();
}
public String getSecuritydanger() {
return securitydanger;
}
public void setSecuritydanger(String securitydanger) {
this.securitydanger = securitydanger == null ? null : securitydanger.trim();
}
public String getRests() {
return rests;
}
public void setRests(String rests) {
this.rests = rests == null ? null : rests.trim();
}
public String getHandovermatters() {
return handovermatters;
}
public void setHandovermatters(String handovermatters) {
this.handovermatters = handovermatters == null ? null : handovermatters.trim();
}
public Date getCreatime() {
return creatime;
}
public void setCreatime(Date creatime) {
this.creatime = creatime;
}
public Integer getUserid() {
return userid;
}
public void setUserid(Integer userid) {
this.userid = userid;
}
public String getRemberk1() {
return remberk1;
}
public void setRemberk1(String remberk1) {
this.remberk1 = remberk1 == null ? null : remberk1.trim();
}
public String getRemberk2() {
return remberk2;
}
public void setRemberk2(String remberk2) {
this.remberk2 = remberk2 == null ? null : remberk2.trim();
}
public String getRemberk3() {
return remberk3;
}
public void setRemberk3(String remberk3) {
this.remberk3 = remberk3 == null ? null : remberk3.trim();
}
}