zhangfeng
2023-07-27 cc3ddfda6bfb9a2aa0cd55073e8864320daf1f20
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
package com.gk.hotwork.Domain;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
/**
 * @email 1603559716@qq.com
 * @author: zf
 * @date: 2023/7/21
 * @time: 16:16
 */
@Data
@TableName("inspection_hidden_danger")
public class InspectionHiddenDanger {
    private Long id;
    /**
     * 检查清单Id
     */
    private Long selfInspectionId;
 
    private String info;
    /**
     * 隐患级别
     * 1一般
     * 2重大
     */
    private Integer level;
    /**
     * 隐患附件
     */
    private String url;
    private Boolean validFlag;
    /**
     * 检查项id
     */
    private Long selfInspectionItemId;
    /** 创建时间  create_time **/
    private Date createTime;
    /** 创建人  create_by **/
    private String createBy;
    /** 最新更新时间  update_time **/
    private Date updateTime;
    /** 最后更新人  update_by **/
    private String updateBy;
    /**
     * 整改状态 -1未整改,1已整改
     */
    private Byte status;
    /**
     * 整改描述
     */
    private String rectificationInfo;
    /**
     * 整改附件
     */
    private String rectificationUrl;
    @TableField(exist = false)
    private String elementAname;
    @TableField(exist = false)
    private String elementBname;
    @TableField(exist = false)
    private String elementCname;
    @TableField(exist = false)
    private String standardizationRequirements;
    @TableField(exist = false)
    private String enterpriseStandard;
    @TableField(exist = false)
    private String reviewMethod;
    @TableField(exist = false)
    private String veto;
    //隐患附件
    @TableField(exist = false)
    private List<AttachmentInfo> attachmentList;
    //整改附件
    @TableField(exist = false)
    private List<AttachmentInfo> rattachmentList;
 
}