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.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* 审批规则--填报事项标准
|
*/
|
@TableName("approval_rule_item_stand")
|
public class ApprovalRuleItemStand implements Serializable {
|
|
private static final long serialVersionUID = 957318531983481233L;
|
//标准ID
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
//标准类型 压力 温度....
|
private Byte type;
|
|
//所属企业ID
|
private Long eid;
|
|
//所属部门ID
|
private Long depId;
|
|
//最低值
|
private BigDecimal minVal;
|
|
//最低值匹配模式,等于,大于...
|
private Byte minValMatchPattern;
|
|
//最大值
|
private BigDecimal maxVal;
|
|
//最大值匹配模式,等于,大于...
|
private Byte maxValMatchPattern;
|
|
//标题
|
private String title;
|
|
//描述信息
|
private String info;
|
//状态
|
private Byte status;
|
|
private LocalDateTime gmtCreate;
|
|
private Long createUid;
|
|
private String createUname;
|
|
private LocalDateTime gmtModified;
|
|
private Long modifiedUid;
|
|
private String modifiedUname;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getType() {
|
return type;
|
}
|
|
public void setType(Byte type) {
|
this.type = type;
|
}
|
|
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 BigDecimal getMinVal() {
|
return minVal;
|
}
|
|
public void setMinVal(BigDecimal minVal) {
|
this.minVal = minVal;
|
}
|
|
public Byte getMinValMatchPattern() {
|
return minValMatchPattern;
|
}
|
|
public void setMinValMatchPattern(Byte minValMatchPattern) {
|
this.minValMatchPattern = minValMatchPattern;
|
}
|
|
public BigDecimal getMaxVal() {
|
return maxVal;
|
}
|
|
public void setMaxVal(BigDecimal maxVal) {
|
this.maxVal = maxVal;
|
}
|
|
public Byte getMaxValMatchPattern() {
|
return maxValMatchPattern;
|
}
|
|
public void setMaxValMatchPattern(Byte maxValMatchPattern) {
|
this.maxValMatchPattern = maxValMatchPattern;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
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;
|
}
|
|
public String getInfo() {
|
return info;
|
}
|
|
public void setInfo(String info) {
|
this.info = info;
|
}
|
}
|