package com.vci.server.workflow.objects;
|
import java.util.*;
|
|
import com.vci.common.annotaion.CustomAnnotaion;
|
import com.vci.common.objects.AbstractHistorizable;
|
/**
|
* FlowApproveContent Hibernate Object
|
*
|
*/
|
@CustomAnnotaion(CustomDescription = "用户自定义审批意见字典(库)")
|
public class FlowApproveContent extends AbstractHistorizable implements java.io.Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
@CustomAnnotaion(CustomDescription = "ID",InToString = false)
|
private String id = "";
|
@CustomAnnotaion(CustomDescription = "用户",InToString = true)
|
private String userId = "";
|
@CustomAnnotaion(CustomDescription = "审批意见",InToString = true)
|
private String approveContent = "";
|
@CustomAnnotaion(CustomDescription = "顺序",InToString = false)
|
private Short seq = 0;
|
@CustomAnnotaion(CustomDescription = "创建时间",InToString = false)
|
private Date createTime = new Date();
|
@CustomAnnotaion(CustomDescription = "创建者",InToString = false)
|
private String createUser = "";
|
@CustomAnnotaion(CustomDescription = "创建者拥有角色",InToString = false)
|
private String createRole = "";
|
@CustomAnnotaion(CustomDescription = "创建者所在组织",InToString = false)
|
private String createOrg = "";
|
@CustomAnnotaion(CustomDescription = "修改时间",InToString = false)
|
private Date modifyTime = new Date();
|
@CustomAnnotaion(CustomDescription = "修改者",InToString = false)
|
private String modifyUser = "";
|
@CustomAnnotaion(CustomDescription = "修改者拥有角色",InToString = false)
|
private String modifyRole = "";
|
@CustomAnnotaion(CustomDescription = "修改者所在组织",InToString = false)
|
private String modifyOrg = "";
|
@CustomAnnotaion(CustomDescription = "授权者",InToString = false)
|
private String licensors = "";
|
public FlowApproveContent(){
|
}
|
public String getId(){
|
return this.id;
|
}
|
public void setId(String val){
|
this.id = val;
|
}
|
public String getUserId(){
|
return this.userId;
|
}
|
public void setUserId(String val){
|
this.userId = val;
|
}
|
public String getApproveContent(){
|
return this.approveContent;
|
}
|
public void setApproveContent(String val){
|
this.approveContent = val;
|
}
|
public Short getSeq(){
|
return this.seq;
|
}
|
public void setSeq(Short val){
|
this.seq = val;
|
}
|
public Date getCreateTime(){
|
return this.createTime;
|
}
|
public void setCreateTime(Date val){
|
this.createTime = val;
|
}
|
public String getCreateUser(){
|
return this.createUser;
|
}
|
public void setCreateUser(String val){
|
this.createUser = val;
|
}
|
public String getCreateRole(){
|
return this.createRole;
|
}
|
public void setCreateRole(String val){
|
this.createRole = val;
|
}
|
public String getCreateOrg(){
|
return this.createOrg;
|
}
|
public void setCreateOrg(String val){
|
this.createOrg = val;
|
}
|
public Date getModifyTime(){
|
return this.modifyTime;
|
}
|
public void setModifyTime(Date val){
|
this.modifyTime = val;
|
}
|
public String getModifyUser(){
|
return this.modifyUser;
|
}
|
public void setModifyUser(String val){
|
this.modifyUser = val;
|
}
|
public String getModifyRole(){
|
return this.modifyRole;
|
}
|
public void setModifyRole(String val){
|
this.modifyRole = val;
|
}
|
public String getModifyOrg(){
|
return this.modifyOrg;
|
}
|
public void setModifyOrg(String val){
|
this.modifyOrg = val;
|
}
|
public String getLicensors(){
|
return this.licensors;
|
}
|
public void setLicensors(String val){
|
this.licensors = val;
|
}
|
}
|