package com.moon.server.entity.show;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 申请流程
|
* @author WWW
|
*/
|
public class FlowEntity implements Serializable {
|
private static final long serialVersionUID = -267684465864526336L;
|
|
private int id;
|
|
private int applyid;
|
|
private String depcode;
|
|
private int userid;
|
|
private int status;
|
|
private String descr;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
private String uname;
|
|
private String depName;
|
|
public FlowEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public int getApplyid() {
|
return applyid;
|
}
|
|
public void setApplyid(int applyid) {
|
this.applyid = applyid;
|
}
|
|
public String getDepcode() {
|
return depcode;
|
}
|
|
public void setDepcode(String depcode) {
|
this.depcode = depcode;
|
}
|
|
public int getUserid() {
|
return userid;
|
}
|
|
public void setUserid(int userid) {
|
this.userid = userid;
|
}
|
|
public int getStatus() {
|
return status;
|
}
|
|
public void setStatus(int status) {
|
this.status = status;
|
}
|
|
public String getDescr() {
|
return descr;
|
}
|
|
public void setDescr(String descr) {
|
this.descr = descr;
|
}
|
|
public int getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(int createUser) {
|
this.createUser = createUser;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public int getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(int updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getUname() {
|
return uname;
|
}
|
|
public void setUname(String uname) {
|
this.uname = uname;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
}
|