郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
package com.gk.hotwork.Domain;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
@TableName("safety_self_inspection")
public class SafetySelfInspection implements Serializable {
 
    private final static long serialVersionUID = 1L;
 
    /** 自查清单名称  inspection_name **/
    private String inspectionName;
 
    /** 检查时间  inspection_time  **/
    @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
    private Date inspectionTime;
 
    /** 检察人员  inspector **/
    private Long inspector;
 
    /** 状态 0:暂存 1:评审中 2:已评审  status **/
    private Integer status;
 
    /** 检察人员   **/
    @TableField(exist = false)
    private String inspectorName;
 
    /** 检查开始时间   **/
    @TableField(exist = false)
    @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
    private Date inspectionStartTime;
 
    /** 检查结束时间   **/
    @TableField(exist = false)
    @JsonFormat(pattern="yyyy-MM-dd",timezone = "GMT+8")
    private Date inspectionEndTime;
 
    /** 检查项集合   **/
    @TableField(exist = false)
    private List<SafetySelfInspectionItem> itemList;
 
 
    /** 主键id  id **/
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 有效标识  valid_flag **/
    private Boolean validFlag;
 
    /** 创建时间  create_time **/
    private Date createTime;
 
    /** 创建人  create_by **/
    private String createBy;
 
    /** 最新更新时间  update_time **/
    private Date updateTime;
 
    /** 最后更新人  update_by **/
    private String updateBy;
 
 
    /**   主键id  id   **/
    public Long getId() {
        return id;
    }
 
    /**   主键id  id   **/
    public void setId(Long id) {
        this.id = id;
    }
 
    /**   有效标识  valid_flag   **/
    public Boolean getValidFlag() {
        return validFlag;
    }
 
    /**   有效标识  valid_flag   **/
    public void setValidFlag(Boolean validFlag) {
        this.validFlag = validFlag;
    }
 
    /**   创建时间  create_time   **/
    public Date getCreateTime() {
        return createTime;
    }
 
    /**   创建时间  create_time   **/
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    /**   创建人  create_by   **/
    public String getCreateBy() {
        return createBy;
    }
 
    /**   创建人  create_by   **/
    public void setCreateBy(String createBy) {
        this.createBy = createBy == null ? null : createBy.trim();
    }
 
    /**   最新更新时间  update_time   **/
    public Date getUpdateTime() {
        return updateTime;
    }
 
    /**   最新更新时间  update_time   **/
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    /**   最后更新人  update_by   **/
    public String getUpdateBy() {
        return updateBy;
    }
 
    /**   最后更新人  update_by   **/
    public void setUpdateBy(String updateBy) {
        this.updateBy = updateBy == null ? null : updateBy.trim();
    }
 
    public String getInspectionName() {
        return inspectionName;
    }
 
    public void setInspectionName(String inspectionName) {
        this.inspectionName = inspectionName;
    }
 
    public Date getInspectionTime() {
        return inspectionTime;
    }
 
    public void setInspectionTime(Date inspectionTime) {
        this.inspectionTime = inspectionTime;
    }
 
    public Long getInspector() {
        return inspector;
    }
 
    public void setInspector(Long inspector) {
        this.inspector = inspector;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getInspectorName() {
        return inspectorName;
    }
 
    public void setInspectorName(String inspectorName) {
        this.inspectorName = inspectorName;
    }
 
    public Date getInspectionStartTime() {
        return inspectionStartTime;
    }
 
    public void setInspectionStartTime(Date inspectionStartTime) {
        this.inspectionStartTime = inspectionStartTime;
    }
 
    public Date getInspectionEndTime() {
        return inspectionEndTime;
    }
 
    public void setInspectionEndTime(Date inspectionEndTime) {
        this.inspectionEndTime = inspectionEndTime;
    }
 
    public List<SafetySelfInspectionItem> getItemList() {
        return itemList;
    }
 
    public void setItemList(List<SafetySelfInspectionItem> itemList) {
        this.itemList = itemList;
    }
}