package com.gkhy.safePlatform.doublePrevention.entity.dto.resp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
public class PreventRiskEventQueryRespDTO {
|
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
private Integer pageIndex;
|
|
private Integer pageSize;
|
/**
|
* 安全风险事件名称
|
*/
|
private String riskEventName;
|
/**
|
* 安全风险单元Id
|
*/
|
private Long riskUnitId;
|
/**
|
* 安全风险单元名称
|
*/
|
private String riskUnitName;
|
/**
|
* 创建时间
|
*/
|
@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 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;
|
/**
|
* 可能照成的后果
|
*/
|
private String eventResult;
|
|
public String getEventResult() {
|
return eventResult;
|
}
|
|
public void setEventResult(String eventResult) {
|
this.eventResult = eventResult;
|
}
|
|
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 getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getRiskEventName() {
|
return riskEventName;
|
}
|
|
public void setRiskEventName(String riskEventName) {
|
this.riskEventName = riskEventName;
|
}
|
|
public String getRiskUnitName() {
|
return riskUnitName;
|
}
|
|
public void setRiskUnitName(String riskUnitName) {
|
this.riskUnitName = riskUnitName;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
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;
|
}
|
|
public Long getRiskUnitId() {
|
return riskUnitId;
|
}
|
|
public void setRiskUnitId(Long riskUnitId) {
|
this.riskUnitId = riskUnitId;
|
}
|
}
|