package com.gkhy.safePlatform.doublePrevention.entity.dto.resp; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; public class PreventRiskControlMeasureQueryRespDTO { /** * 主键 */ private Long id; private Integer pageIndex; private Integer pageSize; /** * 风险管控措施编号 */ private String controlMeasureCode; /** * 管控方式:1-自动化监控,2-隐患排查 */ private Byte controlType; /** * 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date gmtCreate; /** * 最后修改时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date gmtModitify; /** * 管控措施分类1 * 1-工程技术,2-维护保养,3-操作行为,4-应急设施 */ private Byte classify1; /** * 管控措施分类2 * 1工程技术-工艺控制,关键设备/部件,安全附件,安全仪表,其他; * 2维护保养-动设备,静设备;3 * 操作行为-人员资质,操作记录,交接班; * 4应急设施-应急设施,个体防护,消防设施,应急预案 */ private Byte classify2; /** * 管控措施分类3 * 自定义 */ private String classify3; /** * 风险事件id */ private Long riskEventId; /** * 风险事件名称 */ private String riskEventName; /** * 修改人 */ private String lastEditUserName; /** * 创建人 */ private String createByUserName; /** * 风险管控措施描述 */ private String measureDesc; /** * 隐患排查内容 */ private String checkContent; /** * 上报时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date reportTime; /** * 同步状态 */ private Byte reportStatus; /** * 上报开关 1-上报;2-不上报 */ private Byte reportSwitch; /** * 上报开关:0-开启;1-关闭 */ private Byte reportState; /** * 上报方式:0-手动;1-自动 */ private Byte reportType; public Byte getReportState() { return reportState; } public void setReportState(Byte reportState) { this.reportState = reportState; } public Byte getReportType() { return reportType; } public void setReportType(Byte reportType) { this.reportType = reportType; } public Date getReportTime() { return reportTime; } public void setReportTime(Date reportTime) { this.reportTime = reportTime; } public Byte getReportStatus() { return reportStatus; } public void setReportStatus(Byte reportStatus) { this.reportStatus = reportStatus; } public Byte getReportSwitch() { return reportSwitch; } public void setReportSwitch(Byte reportSwitch) { this.reportSwitch = reportSwitch; } public Long getRiskEventId() { return riskEventId; } public void setRiskEventId(Long riskEventId) { this.riskEventId = riskEventId; } public String getCheckContent() { return checkContent; } public void setCheckContent(String checkContent) { this.checkContent = checkContent; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Byte getControlType() { return controlType; } public void setControlType(Byte controlType) { this.controlType = controlType; } public String getControlMeasureCode() { return controlMeasureCode; } public void setControlMeasureCode(String controlMeasureCode) { this.controlMeasureCode = controlMeasureCode; } public Date getGmtModitify() { return gmtModitify; } public void setGmtModitify(Date gmtModitify) { this.gmtModitify = gmtModitify; } public Byte getClassify1() { return classify1; } public void setClassify1(Byte classify1) { this.classify1 = classify1; } public Byte getClassify2() { return classify2; } public void setClassify2(Byte classify2) { this.classify2 = classify2; } public String getClassify3() { return classify3; } public void setClassify3(String classify3) { this.classify3 = classify3; } public String getRiskEventName() { return riskEventName; } public void setRiskEventName(String riskEventName) { this.riskEventName = riskEventName; } public Date getGmtCreate() { return gmtCreate; } public void setGmtCreate(Date gmtCreate) { this.gmtCreate = gmtCreate; } public String getLastEditUserName() { return lastEditUserName; } public void setLastEditUserName(String lastEditUserName) { this.lastEditUserName = lastEditUserName; } public String getMeasureDesc() { return measureDesc; } public void setMeasureDesc(String measureDesc) { this.measureDesc = measureDesc; } public Integer getPageIndex() { return pageIndex; } public void setPageIndex(Integer pageIndex) { this.pageIndex = pageIndex; } public Integer getPageSize() { return pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getCreateByUserName() { return createByUserName; } public void setCreateByUserName(String createByUserName) { this.createByUserName = createByUserName; } }