双重预防项目-国泰新华二开定制版
16639036659
2022-09-27 7e7195766eb018b4ba00b2d0663f6dcb11adefc8
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
package com.ruoyi.doublePrevention.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.util.Date;
 
@TableName("prevent_risk_danger_check_and_measure")
public class PreventRiskDangerCheckAndMeasure {
 
    /**
     * 主键
     * */
    @TableId(value = "id" , type = IdType.AUTO)
    private Long id;
    /**
     * 核查任务id
     * */
    private Long checkId;
    /**
     * 核查任务附属表id
     * */
    private Long dangerCheckPointId;
    /**
     * 核查点id
     * */
    private Long baseCheckPointId;
    /**
     * 管控措施id
     * */
    private Long controlMeasureId;
    /**
     * job id
     * */
    private String  checkContent;
    /**
     * 排查结果:0-正常,1-存在隐患,2-未处理,3其他
     * */
    private Byte checkResult;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getDangerCheckPointId() {
        return dangerCheckPointId;
    }
 
    public void setDangerCheckPointId(Long dangerCheckPointId) {
        this.dangerCheckPointId = dangerCheckPointId;
    }
 
    public Long getCheckId() {
        return checkId;
    }
 
    public void setCheckId(Long checkId) {
        this.checkId = checkId;
    }
 
    public Long getBaseCheckPointId() {
        return baseCheckPointId;
    }
 
    public void setBaseCheckPointId(Long baseCheckPointId) {
        this.baseCheckPointId = baseCheckPointId;
    }
 
    public Long getControlMeasureId() {
        return controlMeasureId;
    }
 
    public void setControlMeasureId(Long controlMeasureId) {
        this.controlMeasureId = controlMeasureId;
    }
 
    public String getCheckContent() {
        return checkContent;
    }
 
    public void setCheckContent(String checkContent) {
        this.checkContent = checkContent;
    }
 
    public Byte getCheckResult() {
        return checkResult;
    }
 
    public void setCheckResult(Byte checkResult) {
        this.checkResult = checkResult;
    }
}