zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
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
package com.yuanchu.mom.pojo;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * <p>
 * 危险因素辨识与风险评价结果一览表
 * </p>
 *
 * @author
 * @since 2024-11-15 02:58:51
 */
@Getter
@Setter
@TableName("cnas_manage_risk_assessment_results")
@ApiModel(value = "ManageRiskAssessmentResults对象", description = "危险因素辨识与风险评价结果一览表")
public class ManageRiskAssessmentResults implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    @ExcelIgnore
    private Integer id;
 
    @ApiModelProperty("地点/活动")
    @ExcelProperty(value = "地点/活动", index = 0)
    private String venue;
 
    @ApiModelProperty("危险因素")
    @ExcelProperty(value = "危险因素", index = 1)
    private String hazard;
 
    @ApiModelProperty("可能导致的事故")
    @ExcelProperty(value = "可能导致的事故", index = 2)
    private String accidents;
 
    @ApiModelProperty("对人可能造成的危害")
    @ExcelProperty(value = "对人可能造成的危害", index = 3)
    private String injury;
 
    @ApiModelProperty("风险评价")
    @ExcelProperty(value = {"风险评价", "L"})
    private String riskL;
 
    @ApiModelProperty("风险评价")
    @ExcelProperty(value = {"风险评价", "E"})
    private String riskE;
 
    @ApiModelProperty("风险评价")
    @ExcelProperty(value = {"风险评价", "C"})
    private String riskC;
 
    @ApiModelProperty("风险评价")
    @ExcelProperty(value = {"风险评价", "D"})
    private String riskD;
 
    @ApiModelProperty("风险等级")
    @ExcelProperty(value = "风险等级", index = 8)
    private String level;
 
    @ApiModelProperty("评价结论")
    @ExcelProperty(value = "评价结论", index = 9)
    private String conclusion;
 
    @ApiModelProperty("控制措施")
    @ExcelProperty(value = "控制措施", index = 10)
    private String measures;
 
    @ApiModelProperty("编制id")
    private Integer editor;
 
    @ApiModelProperty("编制日期")
    private LocalDateTime editorDate;
 
    @ApiModelProperty("审批人id")
    private Integer approval;
 
    @ApiModelProperty("审批日期")
    private LocalDateTime approvalDate;
 
    @ApiModelProperty("批准人id")
    private Integer approve;
 
    @ApiModelProperty("批准日期")
    private LocalDateTime approveDate;
 
    @ApiModelProperty("批准状态1:通过;2:不通过")
    private Integer approveStatus;
 
    @ApiModelProperty("审批状态1:通过;2:不通过")
    private Integer approvalStatus;
}