双重预防项目-国泰新华二开定制版
SZH
2022-08-20 f9f0687195e0fe349185437d22c495d74c8d4a20
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
package com.ruoyi.project.dc.accidentInformation.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import java.util.Date;
 
/**
 * 事故信息对象 dc_accident_information
 * 
 * @author wm
 * @date 2020-12-07
 */
public class AccidentInformation extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private Long accidentId;
 
    /** 创建人id */
    @Excel(name = "创建人id")
    private Long createUserId;
 
    /** 更新者id */
    @Excel(name = "更新者id")
    private Long updateUserId;
 
    /** 发生时间 */
    @Excel(name = "发生时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date accidentTimeOfOccurrence;
 
    /** 轻伤人数 */
    @Excel(name = "轻伤人数")
    private Long accidentNumberOfMinorInjuries;
 
    /** 重伤人数 */
    @Excel(name = "重伤人数")
    private Long accidentNumberOfSeriouslyInjured;
 
    /** 死亡人数 */
    @Excel(name = "死亡人数")
    private Long accidentDeathToll;
 
    /** 中毒人数 */
    @Excel(name = "中毒人数")
    private Long accidentNumberOfPeoplePoisoned;
 
    /** 事故类型 */
    @Excel(name = "事故类型")
    private String accidentTypeOfAccident;
 
    /** 事故详情 */
    @Excel(name = "事故详情")
    private String accidentAccidentDetails;
 
    /** 事故文件 */
    @Excel(name = "事故文件")
    private String accidentOwnedFile;
 
    /** 事故图片 */
    @Excel(name = "事故图片")
    private String accidentOwnedPicture;
 
    //公司id
    private Long companyId;
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
 
    public void setAccidentId(Long accidentId)
    {
        this.accidentId = accidentId;
    }
 
    public Long getAccidentId() 
    {
        return accidentId;
    }
    public void setCreateUserId(Long createUserId) 
    {
        this.createUserId = createUserId;
    }
 
    public Long getCreateUserId() 
    {
        return createUserId;
    }
    public void setUpdateUserId(Long updateUserId) 
    {
        this.updateUserId = updateUserId;
    }
 
    public Long getUpdateUserId() 
    {
        return updateUserId;
    }
    public void setAccidentTimeOfOccurrence(Date accidentTimeOfOccurrence) 
    {
        this.accidentTimeOfOccurrence = accidentTimeOfOccurrence;
    }
 
    public Date getAccidentTimeOfOccurrence() 
    {
        return accidentTimeOfOccurrence;
    }
    public void setAccidentNumberOfMinorInjuries(Long accidentNumberOfMinorInjuries) 
    {
        this.accidentNumberOfMinorInjuries = accidentNumberOfMinorInjuries;
    }
 
    public Long getAccidentNumberOfMinorInjuries() 
    {
        return accidentNumberOfMinorInjuries;
    }
    public void setAccidentNumberOfSeriouslyInjured(Long accidentNumberOfSeriouslyInjured) 
    {
        this.accidentNumberOfSeriouslyInjured = accidentNumberOfSeriouslyInjured;
    }
 
    public Long getAccidentNumberOfSeriouslyInjured() 
    {
        return accidentNumberOfSeriouslyInjured;
    }
    public void setAccidentDeathToll(Long accidentDeathToll) 
    {
        this.accidentDeathToll = accidentDeathToll;
    }
 
    public Long getAccidentDeathToll() 
    {
        return accidentDeathToll;
    }
    public void setAccidentNumberOfPeoplePoisoned(Long accidentNumberOfPeoplePoisoned) 
    {
        this.accidentNumberOfPeoplePoisoned = accidentNumberOfPeoplePoisoned;
    }
 
    public Long getAccidentNumberOfPeoplePoisoned() 
    {
        return accidentNumberOfPeoplePoisoned;
    }
    public void setAccidentTypeOfAccident(String accidentTypeOfAccident) 
    {
        this.accidentTypeOfAccident = accidentTypeOfAccident;
    }
 
    public String getAccidentTypeOfAccident() 
    {
        return accidentTypeOfAccident;
    }
    public void setAccidentAccidentDetails(String accidentAccidentDetails) 
    {
        this.accidentAccidentDetails = accidentAccidentDetails;
    }
 
    public String getAccidentAccidentDetails() 
    {
        return accidentAccidentDetails;
    }
    public void setAccidentOwnedFile(String accidentOwnedFile) 
    {
        this.accidentOwnedFile = accidentOwnedFile;
    }
 
    public String getAccidentOwnedFile() 
    {
        return accidentOwnedFile;
    }
    public void setAccidentOwnedPicture(String accidentOwnedPicture) 
    {
        this.accidentOwnedPicture = accidentOwnedPicture;
    }
 
    public String getAccidentOwnedPicture() 
    {
        return accidentOwnedPicture;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("accidentId", getAccidentId())
            .append("createBy", getCreateBy())
            .append("createUserId", getCreateUserId())
            .append("createTime", getCreateTime())
            .append("updateBy", getUpdateBy())
            .append("updateUserId", getUpdateUserId())
            .append("updateTime", getUpdateTime())
            .append("remark", getRemark())
            .append("accidentTimeOfOccurrence", getAccidentTimeOfOccurrence())
            .append("accidentNumberOfMinorInjuries", getAccidentNumberOfMinorInjuries())
            .append("accidentNumberOfSeriouslyInjured", getAccidentNumberOfSeriouslyInjured())
            .append("accidentDeathToll", getAccidentDeathToll())
            .append("accidentNumberOfPeoplePoisoned", getAccidentNumberOfPeoplePoisoned())
            .append("accidentTypeOfAccident", getAccidentTypeOfAccident())
            .append("accidentAccidentDetails", getAccidentAccidentDetails())
            .append("accidentOwnedFile", getAccidentOwnedFile())
            .append("accidentOwnedPicture", getAccidentOwnedPicture())
            .toString();
    }
}