AppUser.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.core.vo
  4. {
  5. [Serializable]
  6. public class AppUser
  7. {
  8. private string userid;
  9. public string Userid
  10. {
  11. get { return userid; }
  12. set { userid = value; }
  13. }
  14. private string username;
  15. public string Username
  16. {
  17. get { return username; }
  18. set { username = value; }
  19. }
  20. private string passwd;
  21. public string Passwd
  22. {
  23. get { return passwd; }
  24. set { passwd = value; }
  25. }
  26. private string deptid;
  27. public string Deptid
  28. {
  29. get { return deptid; }
  30. set { deptid = value; }
  31. }
  32. private string roleid;
  33. public string Roleid
  34. {
  35. get { return roleid; }
  36. set { roleid = value; }
  37. }
  38. private string sex;
  39. public string Sex
  40. {
  41. get { return sex; }
  42. set { sex = value; }
  43. }
  44. private long? age;
  45. public long? Age
  46. {
  47. get { return age; }
  48. set { age = value; }
  49. }
  50. private string ip;
  51. public string Ip
  52. {
  53. get { return ip; }
  54. set { ip = value; }
  55. }
  56. private string email;
  57. public string Email
  58. {
  59. get { return email; }
  60. set { email = value; }
  61. }
  62. private string joindate;
  63. public string Joindate
  64. {
  65. get { return joindate; }
  66. set { joindate = value; }
  67. }
  68. private byte[] image;
  69. public byte[] Image
  70. {
  71. get { return image; }
  72. set { image = value; }
  73. }
  74. private string adress;
  75. public string Adress
  76. {
  77. get { return adress; }
  78. set { adress = value; }
  79. }
  80. private string phone;
  81. public string Phone
  82. {
  83. get { return phone; }
  84. set { phone = value; }
  85. }
  86. private string remark;
  87. public string Remark
  88. {
  89. get { return remark; }
  90. set { remark = value; }
  91. }
  92. private string islogin;
  93. public string Islogin
  94. {
  95. get { return islogin; }
  96. set { islogin = value; }
  97. }
  98. /** 出生日期 */
  99. private DateTime? birthday;
  100. public DateTime? Birthday
  101. {
  102. get { return birthday; }
  103. set { birthday = value; }
  104. }
  105. /** 籍贯 */
  106. private string nativeplace;
  107. public string Nativeplace
  108. {
  109. get { return nativeplace; }
  110. set { nativeplace = value; }
  111. }
  112. /** 政治面貌 */
  113. private string political;
  114. public string Political
  115. {
  116. get { return political; }
  117. set { political = value; }
  118. }
  119. /** 职务 */
  120. private string duty;
  121. public string Duty
  122. {
  123. get { return duty; }
  124. set { duty = value; }
  125. }
  126. /** 职称 */
  127. private string titles;
  128. public string Titles
  129. {
  130. get { return titles; }
  131. set { titles = value; }
  132. }
  133. /** 文化程度 */
  134. private string educations;
  135. public string Educations
  136. {
  137. get { return educations; }
  138. set { educations = value; }
  139. }
  140. /** 专业 */
  141. private string professions;
  142. public string Professions
  143. {
  144. get { return professions; }
  145. set { professions = value; }
  146. }
  147. /** 所在岗位 */
  148. private string workpost;
  149. public string Workpost
  150. {
  151. get { return workpost; }
  152. set { workpost = value; }
  153. }
  154. /** 毕业学校 */
  155. private string gschool;
  156. public string Gschool
  157. {
  158. get { return gschool; }
  159. set { gschool = value; }
  160. }
  161. /** 资质证书 */
  162. private string certificate;
  163. public string Certificate
  164. {
  165. get { return certificate; }
  166. set { certificate = value; }
  167. }
  168. /** 入岗位时间 */
  169. private string entergwdate;
  170. public string Entergwdate
  171. {
  172. get { return entergwdate; }
  173. set { entergwdate = value; }
  174. }
  175. /** 参加工作时间 */
  176. private string workdate;
  177. public string Workdate
  178. {
  179. get { return workdate; }
  180. set { workdate = value; }
  181. }
  182. /** 任职能力 */
  183. private string ability;
  184. public string Ability
  185. {
  186. get { return ability; }
  187. set { ability = value; }
  188. }
  189. /** 所在科室 */
  190. private string workunit;
  191. public string Workunit
  192. {
  193. get { return workunit; }
  194. set { workunit = value; }
  195. }
  196. }
  197. }