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("approval_rule_unit")
|
public class ApprovalRuleUnit implements Serializable {
|
|
private static final long serialVersionUID = 6632336106003849335L;
|
/** 单元规则ID **/
|
@TableId(type = IdType.AUTO)
|
private Long unitId;
|
|
/** 所属规则ID **/
|
private Long ruleId;
|
|
/** 层级ID **/
|
private Long stepId;
|
|
/** 单元规则状态 **/
|
private Byte status;
|
|
/** 单元所在顺序 **/
|
private Integer unitSerial;
|
|
/** 绑定部门ID **/
|
private Long bindDepId;
|
|
private String bindDepName;
|
|
/** 绑定人员ID **/
|
private Long bindUid;
|
|
private String bindUname;
|
|
private LocalDateTime gmtCreate;
|
|
private LocalDateTime gmtModified;
|
|
/** 创建人ID **/
|
private Long createUid;
|
|
/** 创建人姓名 **/
|
private String createUname;
|
|
private Long modifiedUid;
|
|
private String modifiedUname;
|
public Long getUnitId() {
|
return unitId;
|
}
|
|
public void setUnitId(Long unitId) {
|
this.unitId = unitId;
|
}
|
|
public Long getRuleId() {
|
return ruleId;
|
}
|
|
public void setRuleId(Long ruleId) {
|
this.ruleId = ruleId;
|
}
|
|
public Long getStepId() {
|
return stepId;
|
}
|
|
public void setStepId(Long stepId) {
|
this.stepId = stepId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Integer getUnitSerial() {
|
return unitSerial;
|
}
|
|
public void setUnitSerial(Integer unitSerial) {
|
this.unitSerial = unitSerial;
|
}
|
|
public Long getBindDepId() {
|
return bindDepId;
|
}
|
|
public void setBindDepId(Long bindDepId) {
|
this.bindDepId = bindDepId;
|
}
|
|
public Long getBindUid() {
|
return bindUid;
|
}
|
|
public void setBindUid(Long bindUid) {
|
this.bindUid = bindUid;
|
}
|
|
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 getBindDepName() {
|
return bindDepName;
|
}
|
|
public void setBindDepName(String bindDepName) {
|
this.bindDepName = bindDepName;
|
}
|
|
public String getBindUname() {
|
return bindUname;
|
}
|
|
public void setBindUname(String bindUname) {
|
this.bindUname = bindUname;
|
}
|
|
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 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;
|
}
|
}
|