双重预防项目-国泰新华二开定制版
heheng
2025-06-24 e98eeaaa5766511fdb8e6d5e412eb1c59d1f07ce
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
package com.ruoyi.project.tr.riskList.domain;
 
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import com.ruoyi.framework.web.domain.BaseEntity;
import lombok.Data;
 
/**
 * 风险清单对象 tr_risk_list
 * 
 * @author wm
 * @date 2020-05-07
 */
@Data
public class ImportDataRespBO extends BaseEntity
{
 
    @Excel(name = "基础清单")
    private String riskListName;
 
    @Excel(name = "备注")
    private String note;
 
    @Excel(name = "检查类别")
    private String checkType;
 
    @Excel(name = "检查内容")
    private String checkContent;
 
    @Excel(name = "检查依据")
    private String checkResult;
 
    @Excel(name = "风险管控措施编号")
    private String controlMeasureCode;
 
 
}