123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- package com.ruoyi.project.apply.domain;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.ruoyi.framework.aspectj.lang.annotation.Excel;
- import com.ruoyi.framework.web.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import java.util.Date;
- /**
- * 组织保护措施状态变更申请对象 t_apply_safetychange
- *
- * @author ruoyi
- * @date 2023-02-09
- */
- public class TApplySafetychange extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 唯一标识ID */
- private Long id;
- /** 组织保护措施变更描述 */
- @Excel(name = "组织保护措施变更描述")
- private String changeDescribe;
- /** 状态变更原因 */
- @Excel(name = "状态变更原因")
- private String changeReason;
- /** 申请人id */
- @Excel(name = "申请人id")
- private String applicant;
- /** 申请人姓名 */
- @Excel(name = "申请人姓名")
- private String applicantName;
- /** 申请时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "申请时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date applicationTime;
- /** 安全评估及临时的安全措施 */
- @Excel(name = "安全评估及临时的安全措施")
- private String safa;
- /** 安全评估人id */
- @Excel(name = "安全评估人id")
- private String safaer;
- /** 安全评估人姓名 */
- @Excel(name = "安全评估人姓名")
- private String safaerName;
- /** 安全评估时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "安全评估时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date safaTime;
- /** 批准人id */
- @Excel(name = "批准人id")
- private String approver;
- /** 批准人姓名 */
- @Excel(name = "批准人姓名")
- private String approverName;
- /** 批准时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "批准时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date approveTime;
- /** 临时安全措施执行人id */
- @Excel(name = "临时安全措施执行人id")
- private String executor;
- /** 临时安全措施执行人姓名 */
- @Excel(name = "临时安全措施执行人姓名")
- private String executorName;
- /** 临时安全措施执行时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "临时安全措施执行时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date executionTime;
- /** 临时安全措施确认人id */
- @Excel(name = "临时安全措施确认人id")
- private String confirmer;
- /** 临时安全措施确认人姓名 */
- @Excel(name = "临时安全措施确认人姓名")
- private String confirmerName;
- /** 临时安全措施确认时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "临时安全措施确认时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date confirmTime;
- /** 组织保护措施状态变更执行 */
- @Excel(name = "组织保护措施状态变更执行")
- private String changeExecution;
- /** 执行人id */
- @Excel(name = "执行人id")
- private String changeExecutor;
- /** 执行人姓名 */
- @Excel(name = "执行人姓名")
- private String changeExecutorName;
- /** 执行时间 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "执行时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date changeExecutorTime;
- /** 组织保护措施是否已经恢复至变更前的状态 */
- @Excel(name = "组织保护措施是否已经恢复至变更前的状态")
- private String resetConfirm;
- /** 状态恢复,确认人1id */
- @Excel(name = "状态恢复,确认人1id")
- private String resetConfirmer1;
- /** 状态恢复,确认人1姓名 */
- @Excel(name = "状态恢复,确认人1姓名")
- private String resetConfirmerName1;
- /** 状态恢复,确认时间1 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "状态恢复,确认时间1", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date resetConfirmTime1;
- /** 状态恢复,确认人2id */
- @Excel(name = "状态恢复,确认人2id")
- private String resetConfirmer2;
- /** 状态恢复,确认人2姓名 */
- @Excel(name = "状态恢复,确认人2姓名")
- private String resetConfirmerName2;
- /** 状态恢复,确认时间2 */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm" , timezone = "GMT+8")
- @Excel(name = "状态恢复,确认时间2", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
- private Date resetConfirmTime2;
- /** 状态恢复后,之前采取的安全措施是否已撤销: */
- @Excel(name = "状态恢复后,之前采取的安全措施是否已撤销:")
- private String revokeConfirm;
- /** 备注 */
- @Excel(name = "备注")
- private String remarks;
- /** 状态 */
- @Excel(name = "状态")
- private Long status;
- /** 状态 0 :正常 ;1:删除 */
- private Long delFlag;
- /** 创建人 */
- @Excel(name = "创建人")
- private String createrCode;
- /** 创建时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date createdate;
- /** 修改人 */
- @Excel(name = "修改人")
- private Long updaterCode;
- /** 修改时间 */
- @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
- @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
- private Date updatedate;
- /** 部门编号 */
- @Excel(name = "部门编号")
- private Long deptId;
- /**
- 申请状态0:待申请,1:申请中,2:已通过,3:已驳回,4:已拒绝 */
- @Excel(name = "申请状态")
- private String approveStatus;
- /**
- * 流程id
- */
- private String processId;
- /**
- * 申请编号
- */
- private String apNo;
- public String getProcessId() {
- return processId;
- }
- public void setProcessId(String processId) {
- this.processId = processId;
- }
- public String getApNo() {
- return apNo;
- }
- public void setApNo(String apNo) {
- this.apNo = apNo;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setChangeDescribe(String changeDescribe)
- {
- this.changeDescribe = changeDescribe;
- }
- public String getChangeDescribe()
- {
- return changeDescribe;
- }
- public void setChangeReason(String changeReason)
- {
- this.changeReason = changeReason;
- }
- public String getChangeReason()
- {
- return changeReason;
- }
- public void setApplicant(String applicant)
- {
- this.applicant = applicant;
- }
- public String getApplicant()
- {
- return applicant;
- }
- public void setApplicantName(String applicantName)
- {
- this.applicantName = applicantName;
- }
- public String getApplicantName()
- {
- return applicantName;
- }
- public void setApplicationTime(Date applicationTime)
- {
- this.applicationTime = applicationTime;
- }
- public Date getApplicationTime()
- {
- return applicationTime;
- }
- public void setSafa(String safa)
- {
- this.safa = safa;
- }
- public String getSafa()
- {
- return safa;
- }
- public void setSafaer(String safaer)
- {
- this.safaer = safaer;
- }
- public String getSafaer()
- {
- return safaer;
- }
- public void setSafaerName(String safaerName)
- {
- this.safaerName = safaerName;
- }
- public String getSafaerName()
- {
- return safaerName;
- }
- public void setSafaTime(Date safaTime)
- {
- this.safaTime = safaTime;
- }
- public Date getSafaTime()
- {
- return safaTime;
- }
- public void setApprover(String approver)
- {
- this.approver = approver;
- }
- public String getApprover()
- {
- return approver;
- }
- public void setApproverName(String approverName)
- {
- this.approverName = approverName;
- }
- public String getApproverName()
- {
- return approverName;
- }
- public void setApproveTime(Date approveTime)
- {
- this.approveTime = approveTime;
- }
- public Date getApproveTime()
- {
- return approveTime;
- }
- public void setExecutor(String executor)
- {
- this.executor = executor;
- }
- public String getExecutor()
- {
- return executor;
- }
- public void setExecutorName(String executorName)
- {
- this.executorName = executorName;
- }
- public String getExecutorName()
- {
- return executorName;
- }
- public void setExecutionTime(Date executionTime)
- {
- this.executionTime = executionTime;
- }
- public Date getExecutionTime()
- {
- return executionTime;
- }
- public void setConfirmer(String confirmer)
- {
- this.confirmer = confirmer;
- }
- public String getConfirmer()
- {
- return confirmer;
- }
- public void setConfirmerName(String confirmerName)
- {
- this.confirmerName = confirmerName;
- }
- public String getConfirmerName()
- {
- return confirmerName;
- }
- public void setConfirmTime(Date confirmTime)
- {
- this.confirmTime = confirmTime;
- }
- public Date getConfirmTime()
- {
- return confirmTime;
- }
- public void setChangeExecution(String changeExecution)
- {
- this.changeExecution = changeExecution;
- }
- public String getChangeExecution()
- {
- return changeExecution;
- }
- public void setChangeExecutor(String changeExecutor)
- {
- this.changeExecutor = changeExecutor;
- }
- public String getChangeExecutor()
- {
- return changeExecutor;
- }
- public void setChangeExecutorName(String changeExecutorName)
- {
- this.changeExecutorName = changeExecutorName;
- }
- public String getChangeExecutorName()
- {
- return changeExecutorName;
- }
- public void setChangeExecutorTime(Date changeExecutorTime)
- {
- this.changeExecutorTime = changeExecutorTime;
- }
- public Date getChangeExecutorTime()
- {
- return changeExecutorTime;
- }
- public void setResetConfirm(String resetConfirm)
- {
- this.resetConfirm = resetConfirm;
- }
- public String getResetConfirm()
- {
- return resetConfirm;
- }
- public void setResetConfirmer1(String resetConfirmer1)
- {
- this.resetConfirmer1 = resetConfirmer1;
- }
- public String getResetConfirmer1()
- {
- return resetConfirmer1;
- }
- public void setResetConfirmerName1(String resetConfirmerName1)
- {
- this.resetConfirmerName1 = resetConfirmerName1;
- }
- public String getResetConfirmerName1()
- {
- return resetConfirmerName1;
- }
- public void setResetConfirmTime1(Date resetConfirmTime1)
- {
- this.resetConfirmTime1 = resetConfirmTime1;
- }
- public Date getResetConfirmTime1()
- {
- return resetConfirmTime1;
- }
- public void setResetConfirmer2(String resetConfirmer2)
- {
- this.resetConfirmer2 = resetConfirmer2;
- }
- public String getResetConfirmer2()
- {
- return resetConfirmer2;
- }
- public void setResetConfirmerName2(String resetConfirmerName2)
- {
- this.resetConfirmerName2 = resetConfirmerName2;
- }
- public String getResetConfirmerName2()
- {
- return resetConfirmerName2;
- }
- public void setResetConfirmTime2(Date resetConfirmTime2)
- {
- this.resetConfirmTime2 = resetConfirmTime2;
- }
- public Date getResetConfirmTime2()
- {
- return resetConfirmTime2;
- }
- public void setRevokeConfirm(String revokeConfirm)
- {
- this.revokeConfirm = revokeConfirm;
- }
- public String getRevokeConfirm()
- {
- return revokeConfirm;
- }
- public void setRemarks(String remarks)
- {
- this.remarks = remarks;
- }
- public String getRemarks()
- {
- return remarks;
- }
- public void setStatus(Long status)
- {
- this.status = status;
- }
- public Long getStatus()
- {
- return status;
- }
- public void setDelFlag(Long delFlag)
- {
- this.delFlag = delFlag;
- }
- public Long getDelFlag()
- {
- return delFlag;
- }
- public void setCreaterCode(String createrCode)
- {
- this.createrCode = createrCode;
- }
- public String getCreaterCode()
- {
- return createrCode;
- }
- public void setCreatedate(Date createdate)
- {
- this.createdate = createdate;
- }
- public Date getCreatedate()
- {
- return createdate;
- }
- public void setUpdaterCode(Long updaterCode)
- {
- this.updaterCode = updaterCode;
- }
- public Long getUpdaterCode()
- {
- return updaterCode;
- }
- public void setUpdatedate(Date updatedate)
- {
- this.updatedate = updatedate;
- }
- public Date getUpdatedate()
- {
- return updatedate;
- }
- public void setDeptId(Long deptId)
- {
- this.deptId = deptId;
- }
- public Long getDeptId()
- {
- return deptId;
- }
- public void setApproveStatus(String approveStatus)
- {
- this.approveStatus = approveStatus;
- }
- public String getApproveStatus()
- {
- return approveStatus;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("changeDescribe", getChangeDescribe())
- .append("changeReason", getChangeReason())
- .append("applicant", getApplicant())
- .append("applicantName", getApplicantName())
- .append("applicationTime", getApplicationTime())
- .append("safa", getSafa())
- .append("safaer", getSafaer())
- .append("safaerName", getSafaerName())
- .append("safaTime", getSafaTime())
- .append("approver", getApprover())
- .append("approverName", getApproverName())
- .append("approveTime", getApproveTime())
- .append("executor", getExecutor())
- .append("executorName", getExecutorName())
- .append("executionTime", getExecutionTime())
- .append("confirmer", getConfirmer())
- .append("confirmerName", getConfirmerName())
- .append("confirmTime", getConfirmTime())
- .append("changeExecution", getChangeExecution())
- .append("changeExecutor", getChangeExecutor())
- .append("changeExecutorName", getChangeExecutorName())
- .append("changeExecutorTime", getChangeExecutorTime())
- .append("resetConfirm", getResetConfirm())
- .append("resetConfirmer1", getResetConfirmer1())
- .append("resetConfirmerName1", getResetConfirmerName1())
- .append("resetConfirmTime1", getResetConfirmTime1())
- .append("resetConfirmer2", getResetConfirmer2())
- .append("resetConfirmerName2", getResetConfirmerName2())
- .append("resetConfirmTime2", getResetConfirmTime2())
- .append("revokeConfirm", getRevokeConfirm())
- .append("remarks", getRemarks())
- .append("status", getStatus())
- .append("delFlag", getDelFlag())
- .append("createrCode", getCreaterCode())
- .append("createdate", getCreatedate())
- .append("updaterCode", getUpdaterCode())
- .append("updatedate", getUpdatedate())
- .append("deptId", getDeptId())
- .append("approveStatus", getApproveStatus())
- .toString();
- }
- }
|