package cn.com.basic.face.discern.baseApi.entity.user;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class UserDepartment implements Serializable {
|
/**
|
* 用户ID
|
*/
|
private String userid;
|
|
/**
|
* 部门ID
|
*/
|
private String departmentid;
|
|
/**
|
* 用户职位
|
*/
|
private String post;
|
|
/**
|
* 手机
|
*/
|
private String mobilephone;
|
|
/**
|
* 座机
|
*/
|
private String phone;
|
|
/**
|
* 部门所在公司ID
|
*/
|
private String companyid;
|
|
/**
|
* 是否离职
|
*/
|
private Boolean resign;
|
|
/**
|
* 数据状态:1有效,0无效
|
*/
|
private Byte datastatus;
|
|
/**
|
* 创建该记录时间
|
*/
|
private Date createtime;
|
|
/**
|
* 数据创建人
|
*/
|
private String creator;
|
|
/**
|
* 更新时间
|
*/
|
private Date updatetime;
|
|
/**
|
* 数据更新人
|
*/
|
private String updator;
|
|
private static final long serialVersionUID = 1L;
|
|
public String getUserid() {
|
return userid;
|
}
|
|
public void setUserid(String userid) {
|
this.userid = userid == null ? null : userid.trim();
|
}
|
|
public String getDepartmentid() {
|
return departmentid;
|
}
|
|
public void setDepartmentid(String departmentid) {
|
this.departmentid = departmentid == null ? null : departmentid.trim();
|
}
|
|
public String getPost() {
|
return post;
|
}
|
|
public void setPost(String post) {
|
this.post = post == null ? null : post.trim();
|
}
|
|
public String getMobilephone() {
|
return mobilephone;
|
}
|
|
public void setMobilephone(String mobilephone) {
|
this.mobilephone = mobilephone == null ? null : mobilephone.trim();
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone == null ? null : phone.trim();
|
}
|
|
public String getCompanyid() {
|
return companyid;
|
}
|
|
public void setCompanyid(String companyid) {
|
this.companyid = companyid == null ? null : companyid.trim();
|
}
|
|
public Boolean getResign() {
|
return resign;
|
}
|
|
public void setResign(Boolean resign) {
|
this.resign = resign;
|
}
|
|
public Byte getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(Byte datastatus) {
|
this.datastatus = datastatus;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator == null ? null : creator.trim();
|
}
|
|
public Date getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
public String getUpdator() {
|
return updator;
|
}
|
|
public void setUpdator(String updator) {
|
this.updator = updator == null ? null : updator.trim();
|
}
|
|
@Override
|
public String toString() {
|
StringBuilder sb = new StringBuilder();
|
sb.append(getClass().getSimpleName());
|
sb.append(" [");
|
sb.append("Hash = ").append(hashCode());
|
sb.append(", userid=").append(userid);
|
sb.append(", departmentid=").append(departmentid);
|
sb.append(", post=").append(post);
|
sb.append(", mobilephone=").append(mobilephone);
|
sb.append(", phone=").append(phone);
|
sb.append(", companyid=").append(companyid);
|
sb.append(", resign=").append(resign);
|
sb.append(", datastatus=").append(datastatus);
|
sb.append(", createtime=").append(createtime);
|
sb.append(", creator=").append(creator);
|
sb.append(", updatetime=").append(updatetime);
|
sb.append(", updator=").append(updator);
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
sb.append("]");
|
return sb.toString();
|
}
|
}
|