package com.gk.hotwork.specialWork.model.dto.resp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
public class WorkProcessWarningInfoRespDTO implements Serializable {
|
|
private static final long serialVersionUID = -3225169552154720750L;
|
|
private Long workProcessWarningId;
|
|
private Long workApplyId;
|
|
private String workPermitNo;
|
|
private String warningContent;
|
|
private Byte warningType;
|
|
private String warningTypeDesc;
|
|
private String warningInfo;
|
|
private Long operatorUid;
|
|
private String operatorUname;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
private LocalDateTime operationTime;
|
|
private Byte status;
|
|
private String statusDesc;
|
|
private Byte source;
|
|
private String sourceDesc;
|
|
private Byte workType;
|
|
private String workTypeDesc;
|
|
private Byte workLevel;
|
|
private String workLevelDesc;
|
|
private List<String> imagePaths;
|
|
|
public Long getWorkProcessWarningId() {
|
return workProcessWarningId;
|
}
|
|
public void setWorkProcessWarningId(Long workProcessWarningId) {
|
this.workProcessWarningId = workProcessWarningId;
|
}
|
|
public Long getWorkApplyId() {
|
return workApplyId;
|
}
|
|
public void setWorkApplyId(Long workApplyId) {
|
this.workApplyId = workApplyId;
|
}
|
|
public String getWorkPermitNo() {
|
return workPermitNo;
|
}
|
|
public void setWorkPermitNo(String workPermitNo) {
|
this.workPermitNo = workPermitNo;
|
}
|
|
public String getWarningContent() {
|
return warningContent;
|
}
|
|
public void setWarningContent(String warningContent) {
|
this.warningContent = warningContent;
|
}
|
|
public Byte getWarningType() {
|
return warningType;
|
}
|
|
public void setWarningType(Byte warningType) {
|
this.warningType = warningType;
|
}
|
|
public String getWarningTypeDesc() {
|
return warningTypeDesc;
|
}
|
|
public void setWarningTypeDesc(String warningTypeDesc) {
|
this.warningTypeDesc = warningTypeDesc;
|
}
|
|
public String getWarningInfo() {
|
return warningInfo;
|
}
|
|
public void setWarningInfo(String warningInfo) {
|
this.warningInfo = warningInfo;
|
}
|
|
public Long getOperatorUid() {
|
return operatorUid;
|
}
|
|
public void setOperatorUid(Long operatorUid) {
|
this.operatorUid = operatorUid;
|
}
|
|
public String getOperatorUname() {
|
return operatorUname;
|
}
|
|
public void setOperatorUname(String operatorUname) {
|
this.operatorUname = operatorUname;
|
}
|
|
public LocalDateTime getOperationTime() {
|
return operationTime;
|
}
|
|
public void setOperationTime(LocalDateTime operationTime) {
|
this.operationTime = operationTime;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public String getStatusDesc() {
|
return statusDesc;
|
}
|
|
public void setStatusDesc(String statusDesc) {
|
this.statusDesc = statusDesc;
|
}
|
|
public Byte getSource() {
|
return source;
|
}
|
|
public void setSource(Byte source) {
|
this.source = source;
|
}
|
|
public String getSourceDesc() {
|
return sourceDesc;
|
}
|
|
public void setSourceDesc(String sourceDesc) {
|
this.sourceDesc = sourceDesc;
|
}
|
|
public Byte getWorkType() {
|
return workType;
|
}
|
|
public void setWorkType(Byte workType) {
|
this.workType = workType;
|
}
|
|
public String getWorkTypeDesc() {
|
return workTypeDesc;
|
}
|
|
public void setWorkTypeDesc(String workTypeDesc) {
|
this.workTypeDesc = workTypeDesc;
|
}
|
|
public Byte getWorkLevel() {
|
return workLevel;
|
}
|
|
public void setWorkLevel(Byte workLevel) {
|
this.workLevel = workLevel;
|
}
|
|
public String getWorkLevelDesc() {
|
return workLevelDesc;
|
}
|
|
public void setWorkLevelDesc(String workLevelDesc) {
|
this.workLevelDesc = workLevelDesc;
|
}
|
|
public List<String> getImagePaths() {
|
return imagePaths;
|
}
|
|
public void setImagePaths(List<String> imagePaths) {
|
this.imagePaths = imagePaths;
|
}
|
}
|