using System; using System.Text; namespace com.hnshituo.core.vo { [Serializable] public class AppUser { private string userid; public string Userid { get { return userid; } set { userid = value; } } private string username; public string Username { get { return username; } set { username = value; } } private string passwd; public string Passwd { get { return passwd; } set { passwd = value; } } private string deptid; public string Deptid { get { return deptid; } set { deptid = value; } } private string roleid; public string Roleid { get { return roleid; } set { roleid = value; } } private string sex; public string Sex { get { return sex; } set { sex = value; } } private long? age; public long? Age { get { return age; } set { age = value; } } private string ip; public string Ip { get { return ip; } set { ip = value; } } private string email; public string Email { get { return email; } set { email = value; } } private string joindate; public string Joindate { get { return joindate; } set { joindate = value; } } private byte[] image; public byte[] Image { get { return image; } set { image = value; } } private string adress; public string Adress { get { return adress; } set { adress = value; } } private string phone; public string Phone { get { return phone; } set { phone = value; } } private string remark; public string Remark { get { return remark; } set { remark = value; } } private string islogin; public string Islogin { get { return islogin; } set { islogin = value; } } /** 出生日期 */ private DateTime? birthday; public DateTime? Birthday { get { return birthday; } set { birthday = value; } } /** 籍贯 */ private string nativeplace; public string Nativeplace { get { return nativeplace; } set { nativeplace = value; } } /** 政治面貌 */ private string political; public string Political { get { return political; } set { political = value; } } /** 职务 */ private string duty; public string Duty { get { return duty; } set { duty = value; } } /** 职称 */ private string titles; public string Titles { get { return titles; } set { titles = value; } } /** 文化程度 */ private string educations; public string Educations { get { return educations; } set { educations = value; } } /** 专业 */ private string professions; public string Professions { get { return professions; } set { professions = value; } } /** 所在岗位 */ private string workpost; public string Workpost { get { return workpost; } set { workpost = value; } } /** 毕业学校 */ private string gschool; public string Gschool { get { return gschool; } set { gschool = value; } } /** 资质证书 */ private string certificate; public string Certificate { get { return certificate; } set { certificate = value; } } /** 入岗位时间 */ private string entergwdate; public string Entergwdate { get { return entergwdate; } set { entergwdate = value; } } /** 参加工作时间 */ private string workdate; public string Workdate { get { return workdate; } set { workdate = value; } } /** 任职能力 */ private string ability; public string Ability { get { return ability; } set { ability = value; } } /** 所在科室 */ private string workunit; public string Workunit { get { return workunit; } set { workunit = value; } } } }