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")
|
public class ApprovalRule implements Serializable {
|
|
private static final long serialVersionUID = 995929669060725337L;
|
/** 规则ID **/
|
@TableId(type = IdType.AUTO)
|
private Long ruleId;
|
|
//规则名称
|
private String ruleName;
|
|
/** 企业ID **/
|
private Long eid;
|
|
/** 部门ID **/
|
private Long depId;
|
|
/** 规则状态 **/
|
private Byte status;
|
|
/** 作业类型 **/
|
private Byte workType;
|
|
//作业等级
|
private Byte workLevel;
|
|
/** 创建时间 **/
|
private LocalDateTime gmtCreate;
|
|
/** 修改时间 **/
|
private LocalDateTime gmtModified;
|
|
/** 创建人ID **/
|
private Long createUid;
|
|
/** 创建人姓名 **/
|
private String createUname;
|
|
private Long modifiedUid;
|
|
private String modifiedUname;
|
|
public Long getRuleId() {
|
return ruleId;
|
}
|
|
public void setRuleId(Long ruleId) {
|
this.ruleId = ruleId;
|
}
|
|
public String getRuleName() {
|
return ruleName;
|
}
|
|
public void setRuleName(String ruleName) {
|
this.ruleName = ruleName;
|
}
|
|
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 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 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;
|
}
|
}
|