189 lines
3.0 KiB
Plaintext
189 lines
3.0 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
import org.hibernate.validator.constraints.NotBlank;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* GreenApprovalProcess
|
|
* @author dell
|
|
*/
|
|
public class GreenApprovalProcess implements java.io.Serializable {
|
|
|
|
/**
|
|
* 序列化
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
*主键ID
|
|
*/
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
*申请类型
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String applyType;
|
|
|
|
/**
|
|
*申请类型名称
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String applyTypeName;
|
|
|
|
/**
|
|
*审批约束条件除申请类型外其他约束审批人的情况如故障报修根据报
|
|
*/
|
|
|
|
private String approvalBind;
|
|
|
|
/**
|
|
*审批约束条件名称
|
|
*/
|
|
|
|
private String approvalBindValue;
|
|
|
|
/**
|
|
*审批级别
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String _level;
|
|
|
|
/**
|
|
*申请事项详情ID
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Long approvalRoleId;
|
|
|
|
/**
|
|
*创建者
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String creator;
|
|
|
|
/**
|
|
*修改者
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String modifier;
|
|
|
|
/**
|
|
*创建时间
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Date gmtCreated;
|
|
|
|
/**
|
|
*修改时间
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private Date gmtModified;
|
|
|
|
/**
|
|
*是否删除YN默认N
|
|
*/
|
|
@NotBlank(message="不能为空")
|
|
private String isDeleted;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getApplyType() {
|
|
return applyType;
|
|
}
|
|
|
|
public void setApplyType(String applyType) {
|
|
this.applyType = applyType;
|
|
}
|
|
|
|
public String getApplyTypeName() {
|
|
return applyTypeName;
|
|
}
|
|
|
|
public void setApplyTypeName(String applyTypeName) {
|
|
this.applyTypeName = applyTypeName;
|
|
}
|
|
|
|
public String getApprovalBind() {
|
|
return approvalBind;
|
|
}
|
|
|
|
public void setApprovalBind(String approvalBind) {
|
|
this.approvalBind = approvalBind;
|
|
}
|
|
|
|
public String getApprovalBindValue() {
|
|
return approvalBindValue;
|
|
}
|
|
|
|
public void setApprovalBindValue(String approvalBindValue) {
|
|
this.approvalBindValue = approvalBindValue;
|
|
}
|
|
|
|
public String get_level() {
|
|
return _level;
|
|
}
|
|
|
|
public void set_level(String _level) {
|
|
this._level = _level;
|
|
}
|
|
|
|
public Long getApprovalRoleId() {
|
|
return approvalRoleId;
|
|
}
|
|
|
|
public void setApprovalRoleId(Long approvalRoleId) {
|
|
this.approvalRoleId = approvalRoleId;
|
|
}
|
|
|
|
public String getCreator() {
|
|
return creator;
|
|
}
|
|
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
}
|
|
|
|
public String getModifier() {
|
|
return modifier;
|
|
}
|
|
|
|
public void setModifier(String modifier) {
|
|
this.modifier = modifier;
|
|
}
|
|
|
|
public Date getGmtCreated() {
|
|
return gmtCreated;
|
|
}
|
|
|
|
public void setGmtCreated(Date gmtCreated) {
|
|
this.gmtCreated = gmtCreated;
|
|
}
|
|
|
|
public Date getGmtModified() {
|
|
return gmtModified;
|
|
}
|
|
|
|
public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
|
|
public String getIsDeleted() {
|
|
return isDeleted;
|
|
}
|
|
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
|
|
|
|
}
|