package com.gk.hotwork.Domain.dto.resp;
|
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* @email 1603559716@qq.com
|
* @author: zf
|
* @date: 2023/7/21
|
* @time: 17:53
|
*/
|
@Data
|
public class InspectionHiddenDangerRespDTO {
|
/**
|
* 检查清单id
|
*/
|
private Long selfInspectionId;
|
private Date inspectionTime;
|
private String inspectionName;
|
private Byte flag;
|
private String checkedCompanyName;
|
private Integer hdTocalCount;
|
private Integer sameAsCount;
|
private Integer majorCount;
|
/**
|
* 整改状态 0未整改 1部分整改 2全部整改
|
*/
|
private Integer rectificationStatus;
|
|
}
|