双重预防项目-国泰新华二开定制版
kongzy
2024-08-14 135a322f44708b1187d37ea4b6859b5d82113e89
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
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_job_and_measure")
public class PreventRiskJobAndMeasure {
 
    /**
     * 主键
     * */
    @TableId(value = "id" , type = IdType.AUTO)
    private Long id;
    /**
     * job ID
     * */
    private Long jobId;
    /**
     * job uuid
     * */
    private String jobUuid;
    /**
     * 管控措施 ID
     * */
    private Long measureId;
    /**
     * 管控措施 uuid
     * */
    private String measureUuid;
    /**
     * 同步时间
     */
    private Date reportTime;
    /**
     * 同步数据修改时间
     */
    private Date updateReportDataTime;
    /**
     * 上报状态 1-待上报;2-已上报;3-不上报;4-变更需上传
     */
    private Byte reportStatus;
    /**
     * 上报开关 1-上报;2-不上报
     */
    private Byte reportSwitch;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getJobId() {
        return jobId;
    }
 
    public void setJobId(Long jobId) {
        this.jobId = jobId;
    }
 
    public String getJobUuid() {
        return jobUuid;
    }
 
    public void setJobUuid(String jobUuid) {
        this.jobUuid = jobUuid;
    }
 
    public Long getMeasureId() {
        return measureId;
    }
 
    public void setMeasureId(Long measureId) {
        this.measureId = measureId;
    }
 
    public String getMeasureUuid() {
        return measureUuid;
    }
 
    public void setMeasureUuid(String measureUuid) {
        this.measureUuid = measureUuid;
    }
 
    public Date getReportTime() {
        return reportTime;
    }
 
    public void setReportTime(Date reportTime) {
        this.reportTime = reportTime;
    }
 
    public Date getUpdateReportDataTime() {
        return updateReportDataTime;
    }
 
    public void setUpdateReportDataTime(Date updateReportDataTime) {
        this.updateReportDataTime = updateReportDataTime;
    }
 
    public Byte getReportStatus() {
        return reportStatus;
    }
 
    public void setReportStatus(Byte reportStatus) {
        this.reportStatus = reportStatus;
    }
 
    public Byte getReportSwitch() {
        return reportSwitch;
    }
 
    public void setReportSwitch(Byte reportSwitch) {
        this.reportSwitch = reportSwitch;
    }
}