StaffSecurityInspection.java
3.6 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
package com.tianbo.warehouse.model;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
public class StaffSecurityInspection {
private String securityInspectionId;
private String securityInspectionName;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date securityInspectionDate;
private String fireName;
private String securityElectro;
private String fireproofing;
private String doubtfulPerson;
private String violationsCar;
private String builders;
private String otherSituations;
private Integer userId;
private String realname;
private Date optTime;
public String getSecurityInspectionId() {
return securityInspectionId;
}
public void setSecurityInspectionId(String securityInspectionId) {
this.securityInspectionId = securityInspectionId == null ? null : securityInspectionId.trim();
}
public String getSecurityInspectionName() {
return securityInspectionName;
}
public void setSecurityInspectionName(String securityInspectionName) {
this.securityInspectionName = securityInspectionName == null ? null : securityInspectionName.trim();
}
public Date getSecurityInspectionDate() {
return securityInspectionDate;
}
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss")
public void setSecurityInspectionDate(Date securityInspectionDate) {
this.securityInspectionDate = securityInspectionDate;
}
public String getFireName() {
return fireName;
}
public void setFireName(String fireName) {
this.fireName = fireName == null ? null : fireName.trim();
}
public String getSecurityElectro() {
return securityElectro;
}
public void setSecurityElectro(String securityElectro) {
this.securityElectro = securityElectro == null ? null : securityElectro.trim();
}
public String getFireproofing() {
return fireproofing;
}
public void setFireproofing(String fireproofing) {
this.fireproofing = fireproofing == null ? null : fireproofing.trim();
}
public String getDoubtfulPerson() {
return doubtfulPerson;
}
public void setDoubtfulPerson(String doubtfulPerson) {
this.doubtfulPerson = doubtfulPerson == null ? null : doubtfulPerson.trim();
}
public String getViolationsCar() {
return violationsCar;
}
public void setViolationsCar(String violationsCar) {
this.violationsCar = violationsCar == null ? null : violationsCar.trim();
}
public String getBuilders() {
return builders;
}
public void setBuilders(String builders) {
this.builders = builders == null ? null : builders.trim();
}
public String getOtherSituations() {
return otherSituations;
}
public void setOtherSituations(String otherSituations) {
this.otherSituations = otherSituations == null ? null : otherSituations.trim();
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getRealname() {
return realname;
}
public void setRealname(String realname) {
this.realname = realname == null ? null : realname.trim();
}
public Date getOptTime() {
return optTime;
}
public void setOptTime(Date optTime) {
this.optTime = optTime;
}
}