heheng
2025-03-10 c0ae989839d8323974048b71f7dadc29a20a4b15
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
package com.gkhy.labRiskManage.domain.riskReport.model.dto;
 
import javax.persistence.*;
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * 风险评估报告-实验可能有的危险源或危险因素类型
 */
public class ReportSourceTypeQueryDTO {
 
    private Long id;
    /**
     * 报告id
     */
    private Long reportId;
    /**
     * 危险源种类
     */
    private String riskSourceType;
    /**
     * 状态:1-存在;2-不存在
     */
    private Byte status;
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
    /**
     * 新建时间
     */
    private LocalDateTime createTime;
    /**
     * 最后修改人
     */
    private Long updateByUserId;
    /**
     * 新建人
     */
    private Long createByUserId;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getReportId() {
        return reportId;
    }
 
    public void setReportId(Long reportId) {
        this.reportId = reportId;
    }
 
    public String getRiskSourceType() {
        return riskSourceType;
    }
 
    public void setRiskSourceType(String riskSourceType) {
        this.riskSourceType = riskSourceType;
    }
 
    public Byte getStatus() {
        return status;
    }
 
    public void setStatus(Byte status) {
        this.status = status;
    }
 
    public LocalDateTime getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(LocalDateTime updateTime) {
        this.updateTime = updateTime;
    }
 
    public LocalDateTime getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(LocalDateTime createTime) {
        this.createTime = createTime;
    }
 
    public Long getUpdateByUserId() {
        return updateByUserId;
    }
 
    public void setUpdateByUserId(Long updateByUserId) {
        this.updateByUserId = updateByUserId;
    }
 
    public Long getCreateByUserId() {
        return createByUserId;
    }
 
    public void setCreateByUserId(Long createByUserId) {
        this.createByUserId = createByUserId;
    }
 
}