package com.gkhy.safePlatform.doublePrevention.entity.dto.resp;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
public class PreventRiskAnaUnitQueryRespDTO {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
private Integer pageIndex;
|
|
private Integer pageSize;
|
|
/**
|
* 安全风险分析对象编码
|
*/
|
private String riskCode;
|
/**
|
* 安全风险分析单元名称
|
*/
|
private String riskUnitName;
|
/**
|
* 生产设备名称
|
*/
|
private String produceDeviceName;
|
/**
|
* 生产设备Id
|
*/
|
private Long produceDeviceId;
|
/**
|
* 创建时间
|
*/
|
@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;
|
/**
|
* 责任部门
|
*/
|
private String liableDep;
|
/**
|
* 责任部门Id
|
*/
|
private Long liableDepId;
|
/**
|
* 责任人姓名
|
*/
|
private String liablePerson;
|
/**
|
* 责任人Id
|
*/
|
private Long liablePersonId;
|
/**
|
* 创建人
|
*/
|
private String createByUserName;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
/**
|
* 同步时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date reportTime;
|
/**
|
* 上报状态 1-待上报;2-已上报;3-不上报
|
*/
|
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 getReportSwitch() {
|
return reportSwitch;
|
}
|
|
public void setReportSwitch(Byte reportSwitch) {
|
this.reportSwitch = reportSwitch;
|
}
|
|
public Byte getReportStatus() {
|
return reportStatus;
|
}
|
|
public void setReportStatus(Byte reportStatus) {
|
this.reportStatus = reportStatus;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getRiskCode() {
|
return riskCode;
|
}
|
|
public void setRiskCode(String riskCode) {
|
this.riskCode = riskCode;
|
}
|
|
public String getRiskUnitName() {
|
return riskUnitName;
|
}
|
|
public void setRiskUnitName(String riskUnitName) {
|
this.riskUnitName = riskUnitName;
|
}
|
|
public String getProduceDeviceName() {
|
return produceDeviceName;
|
}
|
|
public void setProduceDeviceName(String produceDeviceName) {
|
this.produceDeviceName = produceDeviceName;
|
}
|
|
public Long getProduceDeviceId() {
|
return produceDeviceId;
|
}
|
|
public void setProduceDeviceId(Long produceDeviceId) {
|
this.produceDeviceId = produceDeviceId;
|
}
|
|
public Long getLiableDepId() {
|
return liableDepId;
|
}
|
|
public void setLiableDepId(Long liableDepId) {
|
this.liableDepId = liableDepId;
|
}
|
|
public Long getLiablePersonId() {
|
return liablePersonId;
|
}
|
|
public void setLiablePersonId(Long liablePersonId) {
|
this.liablePersonId = liablePersonId;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public String getLiableDep() {
|
return liableDep;
|
}
|
|
public void setLiableDep(String liableDep) {
|
this.liableDep = liableDep;
|
}
|
|
public String getLiablePerson() {
|
return liablePerson;
|
}
|
|
public void setLiablePerson(String liablePerson) {
|
this.liablePerson = liablePerson;
|
}
|
|
public String getCreateByUserName() {
|
return createByUserName;
|
}
|
|
public void setCreateByUserName(String createByUserName) {
|
this.createByUserName = createByUserName;
|
}
|
|
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 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;
|
}
|
}
|