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 AllWorkApplyPageRespDTO implements Serializable {
|
|
private static final long serialVersionUID = 6175176581171951602L;
|
|
//作业ID
|
private Long workApplyId;
|
|
//所属企业ID
|
private Long eid;
|
|
//所属部门ID
|
private Long depId;
|
|
private String depName;
|
|
//申请人员ID
|
private Long applyUid;
|
|
private String applyUname;
|
|
//作业类型
|
private Byte workType;
|
|
private String workTypeDesc;
|
|
//作业等级
|
private Byte workLevel;
|
|
private String workLevelDesc;
|
|
//作业状态
|
private Byte status;
|
|
private String statusDesc;
|
|
//当前所处审批流程层级
|
private Integer approvalStep;
|
|
private Long approvalStepId;
|
|
private String workContent;
|
|
private String workLocation;
|
// 危险辨识
|
private String hazardIdentification;
|
|
|
// private List<WorkApplyOperatorRespDTO> operators;
|
|
private String operatorUnames;
|
|
private String operatorCompanys;
|
|
private Object workDetail;
|
|
//申请时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
private LocalDateTime applyTime;
|
|
//预期作业开始进行时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
private LocalDateTime expStartTime;
|
|
//预期作业结束进行时间
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
private LocalDateTime expEndTime;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
private LocalDateTime gmtCreate;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
private LocalDateTime gmtModified;
|
|
//作业证编号
|
private String workPermitNo;
|
|
public Long getEid() {
|
return eid;
|
}
|
|
public void setEid(Long eid) {
|
this.eid = eid;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Long getApplyUid() {
|
return applyUid;
|
}
|
|
public void setApplyUid(Long applyUid) {
|
this.applyUid = applyUid;
|
}
|
|
public Byte getWorkType() {
|
return workType;
|
}
|
|
public void setWorkType(Byte workType) {
|
this.workType = workType;
|
}
|
|
public Byte getWorkLevel() {
|
return workLevel;
|
}
|
|
public void setWorkLevel(Byte workLevel) {
|
this.workLevel = workLevel;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Integer getApprovalStep() {
|
return approvalStep;
|
}
|
|
public void setApprovalStep(Integer approvalStep) {
|
this.approvalStep = approvalStep;
|
}
|
|
public LocalDateTime getApplyTime() {
|
return applyTime;
|
}
|
|
public void setApplyTime(LocalDateTime applyTime) {
|
this.applyTime = applyTime;
|
}
|
|
public LocalDateTime getExpStartTime() {
|
return expStartTime;
|
}
|
|
public void setExpStartTime(LocalDateTime expStartTime) {
|
this.expStartTime = expStartTime;
|
}
|
|
public LocalDateTime getExpEndTime() {
|
return expEndTime;
|
}
|
|
public void setExpEndTime(LocalDateTime expEndTime) {
|
this.expEndTime = expEndTime;
|
}
|
|
public LocalDateTime getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(LocalDateTime gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public LocalDateTime getGmtModified() {
|
return gmtModified;
|
}
|
|
public void setGmtModified(LocalDateTime gmtModified) {
|
this.gmtModified = gmtModified;
|
}
|
|
public String getWorkPermitNo() {
|
return workPermitNo;
|
}
|
|
public void setWorkPermitNo(String workPermitNo) {
|
this.workPermitNo = workPermitNo;
|
}
|
|
public Long getApprovalStepId() {
|
return approvalStepId;
|
}
|
|
public void setApprovalStepId(Long approvalStepId) {
|
this.approvalStepId = approvalStepId;
|
}
|
|
|
public String getApplyUname() {
|
return applyUname;
|
}
|
|
public void setApplyUname(String applyUname) {
|
this.applyUname = applyUname;
|
}
|
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public Long getWorkApplyId() {
|
return workApplyId;
|
}
|
|
public void setWorkApplyId(Long workApplyId) {
|
this.workApplyId = workApplyId;
|
}
|
|
public String getStatusDesc() {
|
return statusDesc;
|
}
|
|
public void setStatusDesc(String statusDesc) {
|
this.statusDesc = statusDesc;
|
}
|
|
|
public String getWorkTypeDesc() {
|
return workTypeDesc;
|
}
|
|
public void setWorkTypeDesc(String workTypeDesc) {
|
this.workTypeDesc = workTypeDesc;
|
}
|
|
public String getWorkLevelDesc() {
|
return workLevelDesc;
|
}
|
|
public void setWorkLevelDesc(String workLevelDesc) {
|
this.workLevelDesc = workLevelDesc;
|
}
|
|
public Object getWorkDetail() {
|
return workDetail;
|
}
|
|
public void setWorkDetail(Object workDetail) {
|
this.workDetail = workDetail;
|
}
|
|
|
|
|
|
public String getWorkContent() {
|
return workContent;
|
}
|
|
public void setWorkContent(String workContent) {
|
this.workContent = workContent;
|
}
|
|
public String getWorkLocation() {
|
return workLocation;
|
}
|
|
public void setWorkLocation(String workLocation) {
|
this.workLocation = workLocation;
|
}
|
|
public String getHazardIdentification() {
|
return hazardIdentification;
|
}
|
|
public void setHazardIdentification(String hazardIdentification) {
|
this.hazardIdentification = hazardIdentification;
|
}
|
|
public String getOperatorUnames() {
|
return operatorUnames;
|
}
|
|
public void setOperatorUnames(String operatorUnames) {
|
this.operatorUnames = operatorUnames;
|
}
|
|
public String getOperatorCompanys() {
|
return operatorCompanys;
|
}
|
|
public void setOperatorCompanys(String operatorCompanys) {
|
this.operatorCompanys = operatorCompanys;
|
}
|
}
|