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;
|
|
|
}
|