zhangf
2024-05-08 0414ddb0b2b3a7199ae6181a770f97ac140dbd73
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
package com.gkhy.safePlatform.emergency.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.math.BigDecimal;
import java.util.Date;
 
@TableName("emergency_drill_plan")
public class EmergencyDrillPlanInfoDetailDO {
 
    private String planName;
 
    public String getPlanName() {
        return planName;
    }
 
    public void setPlanName(String planName) {
        this.planName = planName;
    }
 
    private String makingUserName;
 
    public String getMakingUserName() {
        return makingUserName;
    }
 
    public void setMakingUserName(String makingUserName) {
        this.makingUserName = makingUserName;
    }
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    private Date gmtModitify;
 
    private Integer status;
 
    private Date makingPlanDate;
 
    private Date drillPlanDate;
 
    private Long makingUserUid;
 
    private Long makingDepartmentId;
 
    private Long planId;
 
    private Long departmentId;
 
    private BigDecimal drillExpense;
 
    private Byte drillLevel;
 
    private String drillAddress;
 
    private String drillName;
 
    private Byte drillWay;
 
    private String insuranceMeasures;
 
    private String remark;
 
    private String purpose;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Date getMakingPlanDate() {
        return makingPlanDate;
    }
 
    public void setMakingPlanDate(Date makingPlanDate) {
        this.makingPlanDate = makingPlanDate;
    }
 
    public Date getDrillPlanDate() {
        return drillPlanDate;
    }
 
    public void setDrillPlanDate(Date drillPlanDate) {
        this.drillPlanDate = drillPlanDate;
    }
 
    public Long getMakingUserUid() {
        return makingUserUid;
    }
 
    public void setMakingUserUid(Long makingUserUid) {
        this.makingUserUid = makingUserUid;
    }
 
    public Long getMakingDepartmentId() {
        return makingDepartmentId;
    }
 
    public void setMakingDepartmentId(Long makingDepartmentId) {
        this.makingDepartmentId = makingDepartmentId;
    }
 
    public Long getPlanId() {
        return planId;
    }
 
    public void setPlanId(Long planId) {
        this.planId = planId;
    }
 
    public Long getDepartmentId() {
        return departmentId;
    }
 
    public void setDepartmentId(Long departmentId) {
        this.departmentId = departmentId;
    }
 
    public BigDecimal getDrillExpense() {
        return drillExpense;
    }
 
    public void setDrillExpense(BigDecimal drillExpense) {
        this.drillExpense = drillExpense;
    }
 
    public Byte getDrillLevel() {
        return drillLevel;
    }
 
    public void setDrillLevel(Byte drillLevel) {
        this.drillLevel = drillLevel;
    }
 
    public String getDrillAddress() {
        return drillAddress;
    }
 
    public void setDrillAddress(String drillAddress) {
        this.drillAddress = drillAddress;
    }
 
    public String getDrillName() {
        return drillName;
    }
 
    public void setDrillName(String drillName) {
        this.drillName = drillName;
    }
 
    public Byte getDrillWay() {
        return drillWay;
    }
 
    public void setDrillWay(Byte drillWay) {
        this.drillWay = drillWay;
    }
 
    public String getInsuranceMeasures() {
        return insuranceMeasures;
    }
 
    public void setInsuranceMeasures(String insuranceMeasures) {
        this.insuranceMeasures = insuranceMeasures;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getPurpose() {
        return purpose;
    }
 
    public void setPurpose(String purpose) {
        this.purpose = purpose;
    }
 
    public Date getGmtModitify() {
        return gmtModitify;
    }
 
    public void setGmtModitify(Date gmtModitify) {
        this.gmtModitify = gmtModitify;
    }
 
    @Override
    public String toString() {
        return "EmergencyDrillPlanInfoDetailDO{" +
                "id=" + id +
                ", gmtModitify=" + gmtModitify +
                ", status=" + status +
                ", makingPlanDate=" + makingPlanDate +
                ", drillPlanDate=" + drillPlanDate +
                ", makingUserUid=" + makingUserUid +
                ", makingDepartmentId=" + makingDepartmentId +
                ", planId=" + planId +
                ", departmentId=" + departmentId +
                ", drillExpense=" + drillExpense +
                ", drillLevel='" + drillLevel + '\'' +
                ", drillAddress='" + drillAddress + '\'' +
                ", drillName='" + drillName + '\'' +
                ", drillWay='" + drillWay + '\'' +
                ", insuranceMeasures='" + insuranceMeasures + '\'' +
                ", remark='" + remark + '\'' +
                ", purpose='" + purpose + '\'' +
                '}';
    }
}