package com.gk.hotwork.specialWork.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* 通用特殊作业信息
|
*/
|
@TableName("work_apply")
|
public class WorkApplyInfo implements Serializable {
|
|
private static final long serialVersionUID = 6581627675660013530L;
|
//作业ID
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
//所属企业ID
|
private Long eid;
|
|
//所属部门ID
|
private Long depId;
|
|
private String depName;
|
|
//申请人员ID
|
private Long applyUid;
|
|
private String applyUname;
|
|
//作业类型
|
private Byte workType;
|
|
//作业等级
|
private Byte workLevel;
|
|
//作业状态
|
private Byte status;
|
|
//当前所处审批流程层级
|
private Integer approvalStep;
|
|
private Long approvalStepId;
|
|
//申请时间
|
private LocalDateTime applyTime;
|
|
//预期作业开始进行时间
|
private LocalDateTime expStartTime;
|
|
//预期作业结束进行时间
|
private LocalDateTime expEndTime;
|
|
private LocalDateTime gmtCreate;
|
|
private LocalDateTime gmtModified;
|
|
//作业证编号
|
private String workPermitNo;
|
|
//作业人
|
private Long operatorUid;
|
//作业人
|
private String operatorUname;
|
|
private String operatorUnames;
|
|
private String operatorCompanys;
|
|
//作业人编号
|
private String operatorCertificate;
|
// 作业内容
|
private String workContent;
|
|
// 作业地点
|
private String workLocation;
|
|
// 危害辨识
|
private String hazardIdentification;
|
|
// 八大作业id
|
private Long workDetailId;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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 getOperatorUid() {
|
return operatorUid;
|
}
|
|
public void setOperatorUid(Long operatorUid) {
|
this.operatorUid = operatorUid;
|
}
|
|
public String getOperatorCertificate() {
|
return operatorCertificate;
|
}
|
|
public void setOperatorCertificate(String operatorCertificate) {
|
this.operatorCertificate = operatorCertificate;
|
}
|
|
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 getOperatorUname() {
|
return operatorUname;
|
}
|
|
public void setOperatorUname(String operatorUname) {
|
this.operatorUname = operatorUname;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
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 Long getWorkDetailId() {
|
return workDetailId;
|
}
|
|
public void setWorkDetailId(Long workDetailId) {
|
this.workDetailId = workDetailId;
|
}
|
|
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;
|
}
|
}
|