package com.gkhy.safePlatform.specialWork.model.dto.resp; import com.fasterxml.jackson.annotation.JsonFormat; import java.time.LocalDateTime; import java.util.List; public class ApprovalRuleRespDTO { /** 规则ID **/ private Long ruleId; //规则名称 private String ruleName; /** 企业ID **/ private Long eid; /** 部门ID **/ private Long depId; /** 规则状态 **/ private Byte status; /** 作业类型 **/ private Byte workType; //作业等级 private Byte workLevel; /** 创建时间 **/ @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; /** 创建人ID **/ private Long createUid; /** 创建人姓名 **/ private String createUname; private Long modifiedUid; private String modifiedUname; //该审批规则下的审批层级列表 private List stepList; public Long getRuleId() { return ruleId; } public void setRuleId(Long ruleId) { this.ruleId = ruleId; } 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 Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } 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 Long getCreateUid() { return createUid; } public void setCreateUid(Long createUid) { this.createUid = createUid; } public String getCreateUname() { return createUname; } public void setCreateUname(String createUname) { this.createUname = createUname; } public List getStepList() { return stepList; } public void setStepList(List stepList) { this.stepList = stepList; } public String getRuleName() { return ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public Long getModifiedUid() { return modifiedUid; } public void setModifiedUid(Long modifiedUid) { this.modifiedUid = modifiedUid; } public String getModifiedUname() { return modifiedUname; } public void setModifiedUname(String modifiedUname) { this.modifiedUname = modifiedUname; } 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; } }