16639036659
2023-09-19 c07615f4a30c29621979b9a0f6022ada684af6cc
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
package com.gk.hotwork.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_report_batch")
public class PreventReportBatch {
 
    /**
     * 主键id
     * */
    @TableId(value = "id" , type = IdType.AUTO)
    private Long id;
    /**
     * batchId 批次上报后,返回的id
     * */
    private String batchId;
    /**
     * batchTime 批次上报后,接收到返回值的时间
     * */
    private Date reportTime;
    /**
     * 上报数据来源标识
     * */
    private String dataSource;
    /**
     * 上报数据类型
     * 1-风险分析单元
     * 2-风险事件
     * 3-风险管控措施
     * 4-任务配置
     * 5-任务记录
     * 6-隐患信息
     * */
    private Byte dataType;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getBatchId() {
        return batchId;
    }
 
    public void setBatchId(String batchId) {
        this.batchId = batchId;
    }
 
    public Date getReportTime() {
        return reportTime;
    }
 
    public void setReportTime(Date reportTime) {
        this.reportTime = reportTime;
    }
 
    public Byte getDataType() {
        return dataType;
    }
 
    public void setDataType(Byte dataType) {
        this.dataType = dataType;
    }
 
    public String getDataSource() {
        return dataSource;
    }
 
    public void setDataSource(String dataSource) {
        this.dataSource = dataSource;
    }
}