| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- 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; }
- }
- }
- }
|