songhuangfeng123
2022-09-19 aaef9e1eac918cf0cc2d6aa788016ac594de9e6b
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
package com.gkhy.safePlatform.emergency.model.dto.req;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.util.Date;
 
public class EmergencySuppliesReqDTO {
    //负责人名称
    private String principalUserName;
 
    public String getPrincipalUserName() {
        return principalUserName;
    }
 
    public void setPrincipalUserName(String principalUserName) {
        this.principalUserName = principalUserName;
    }
 
    private Long id;
    //生产日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date productionDate;
    //投用日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date useDate;
    //检查日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date inspectDate;
    //下次检查日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date nextInspectDate;
    //检查周期/月
    private Integer inspectPeriod;
    //存储数量
    private Integer count;
    //使用期限/天
    private Integer usePeriod;
    //负责部门id
    private Long departmentId;
    //负责人uid
    private Long principalUserUid;
    //状态(数据字典)
    private Byte status;
    //分类(数据字典)
    private Byte classification;
    //名称
    private String name;
    //编号
    private String number;
    //型号
    private String model;
    //经度
    private String longitude;
    //维度
    private String latitude;
    //用途
    private String use;
    //所属区域
    private Long areaId;
    //存放位置
    private String place;
    //使用说明
    private String useExplain;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Date getProductionDate() {
        return productionDate;
    }
 
    public void setProductionDate(Date productionDate) {
        this.productionDate = productionDate;
    }
 
    public Date getUseDate() {
        return useDate;
    }
 
    public void setUseDate(Date useDate) {
        this.useDate = useDate;
    }
 
    public Date getInspectDate() {
        return inspectDate;
    }
 
    public void setInspectDate(Date inspectDate) {
        this.inspectDate = inspectDate;
    }
 
    public Date getNextInspectDate() {
        return nextInspectDate;
    }
 
    public void setNextInspectDate(Date nextInspectDate) {
        this.nextInspectDate = nextInspectDate;
    }
 
    public Integer getInspectPeriod() {
        return inspectPeriod;
    }
 
    public void setInspectPeriod(Integer inspectPeriod) {
        this.inspectPeriod = inspectPeriod;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public Integer getUsePeriod() {
        return usePeriod;
    }
 
    public void setUsePeriod(Integer usePeriod) {
        this.usePeriod = usePeriod;
    }
 
    public Long getDepartmentId() {
        return departmentId;
    }
 
    public void setDepartmentId(Long departmentId) {
        this.departmentId = departmentId;
    }
 
    public Long getPrincipalUserUid() {
        return principalUserUid;
    }
 
    public void setPrincipalUserUid(Long principalUserUid) {
        this.principalUserUid = principalUserUid;
    }
 
    public Byte getStatus() {
        return status;
    }
 
    public void setStatus(Byte status) {
        this.status = status;
    }
 
    public Byte getClassification() {
        return classification;
    }
 
    public void setClassification(Byte classification) {
        this.classification = classification;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
    public String getModel() {
        return model;
    }
 
    public void setModel(String model) {
        this.model = model;
    }
 
    public String getLongitude() {
        return longitude;
    }
 
    public void setLongitude(String longitude) {
        this.longitude = longitude;
    }
 
    public String getLatitude() {
        return latitude;
    }
 
    public void setLatitude(String latitude) {
        this.latitude = latitude;
    }
 
    public String getUse() {
        return use;
    }
 
    public void setUse(String use) {
        this.use = use;
    }
 
    public Long getAreaId() {
        return areaId;
    }
 
    public void setAreaId(Long areaId) {
        this.areaId = areaId;
    }
 
    public String getPlace() {
        return place;
    }
 
    public void setPlace(String place) {
        this.place = place;
    }
 
    public String getUseExplain() {
        return useExplain;
    }
 
    public void setUseExplain(String useExplain) {
        this.useExplain = useExplain;
    }
 
    @Override
    public String toString() {
        return "EmergencySuppliesInfo{" +
                "id=" + id +
                ", productionDate=" + productionDate +
                ", useDate=" + useDate +
                ", inspectDate=" + inspectDate +
                ", nextInspectDate=" + nextInspectDate +
                ", inspectPeriod=" + inspectPeriod +
                ", count=" + count +
                ", usePeriod=" + usePeriod +
                ", departmentId=" + departmentId +
                ", principalUserUid=" + principalUserUid +
                ", status='" + status + '\'' +
                ", classification='" + classification + '\'' +
                ", name='" + name + '\'' +
                ", number='" + number + '\'' +
                ", model='" + model + '\'' +
                ", longitude='" + longitude + '\'' +
                ", latitude='" + latitude + '\'' +
                ", use='" + use + '\'' +
                ", areaId=" + areaId +
                ", place='" + place + '\'' +
                ", useExplain='" + useExplain + '\'' +
                '}';
    }
}