songhuangfeng123
2022-07-13 ad15eae420c1a453be4e3624e45944a58b53c528
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
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 java.util.Date;
 
public class EmergencySuppliesReqDTO {
 
    @TableId(type = IdType.AUTO)
    private Long id;
    private Date productionDate;
    private Date useDate;
    private Date inspectDate;
    private Date nextInspectDate;
    private Integer inspectPeriod;
    private Integer count;
    private Integer usePeriod;
    private Long departmentId;
    private Long principalUserUid;
    private String status;
    private String 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 String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public String getClassification() {
        return classification;
    }
 
    public void setClassification(String 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 + '\'' +
                '}';
    }
}