|
|
|
@ -23,63 +23,63 @@ public class PowerEnergySupervisionChecklist extends BaseEntity
|
|
|
|
|
private String date;
|
|
|
|
|
|
|
|
|
|
/** 作业类别 */
|
|
|
|
|
@Excel(name = "作业类别")
|
|
|
|
|
@Excel(name = "作业类别", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String jobCategory;
|
|
|
|
|
|
|
|
|
|
/** 作业单位 */
|
|
|
|
|
@Excel(name = "作业单位")
|
|
|
|
|
@Excel(name = "作业单位", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String jobUnit;
|
|
|
|
|
|
|
|
|
|
/** 作业名称 */
|
|
|
|
|
@Excel(name = "作业名称")
|
|
|
|
|
@Excel(name = "作业名称", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String jobName;
|
|
|
|
|
|
|
|
|
|
/** 作业风险 */
|
|
|
|
|
@Excel(name = "作业风险")
|
|
|
|
|
@Excel(name = "作业风险", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String jobRisk;
|
|
|
|
|
|
|
|
|
|
/** 风险管控措施 */
|
|
|
|
|
@Excel(name = "风险管控措施")
|
|
|
|
|
@Excel(name = "风险管控措施", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String riskControlMeasures;
|
|
|
|
|
|
|
|
|
|
/** 监督检查层级 */
|
|
|
|
|
@Excel(name = "监督检查层级")
|
|
|
|
|
@Excel(name = "监督检查层级", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String supervisionLevel;
|
|
|
|
|
|
|
|
|
|
/** 监督检查落实情况 */
|
|
|
|
|
@Excel(name = "监督检查落实情况")
|
|
|
|
|
@Excel(name = "监督检查落实情况", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String supervisionImplementation;
|
|
|
|
|
|
|
|
|
|
/** 作业科室 */
|
|
|
|
|
@Excel(name = "作业科室")
|
|
|
|
|
@Excel(name = "作业科室", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String jobDepartment;
|
|
|
|
|
|
|
|
|
|
/** 监管人员 */
|
|
|
|
|
@Excel(name = "监管人员")
|
|
|
|
|
@Excel(name = "监管人员", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String regulatoryPersonnel;
|
|
|
|
|
|
|
|
|
|
/** 检查人员 */
|
|
|
|
|
@Excel(name = "检查人员")
|
|
|
|
|
@Excel(name = "检查人员", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String inspectionPersonnel;
|
|
|
|
|
|
|
|
|
|
/** 检查出的问题 */
|
|
|
|
|
@Excel(name = "检查出的问题")
|
|
|
|
|
@Excel(name = "检查出的问题", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String problemsFound;
|
|
|
|
|
|
|
|
|
|
/** 外包单位责任人 */
|
|
|
|
|
@Excel(name = "外包单位责任人")
|
|
|
|
|
@Excel(name = "外包单位责任人", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String outsourcingUnitResponsiblePerson;
|
|
|
|
|
|
|
|
|
|
/** 工单变更内容 */
|
|
|
|
|
@Excel(name = "工单变更内容")
|
|
|
|
|
@Excel(name = "工单变更内容", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String workOrderChangeContent;
|
|
|
|
|
|
|
|
|
|
/** 本工单是否闭环 */
|
|
|
|
|
@Excel(name = "本工单是否闭环")
|
|
|
|
|
@Excel(name = "本工单是否闭环", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String isWorkOrderClosedLoop;
|
|
|
|
|
|
|
|
|
|
/** 备注 */
|
|
|
|
|
@Excel(name = "备注")
|
|
|
|
|
@Excel(name = "备注", cellType = Excel.ColumnType.STRING)
|
|
|
|
|
private String remarks;
|
|
|
|
|
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|