EsmUserInternalCheck.java 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. package com.ydtech.modules.esm.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class EsmUserInternalCheck implements Serializable {
  5. private static final long serialVersionUID = 5086594541373584430L;
  6. private String checkid;
  7. private String id;
  8. private String addressnow;
  9. private String nations;
  10. private String politicalstatus;
  11. private String college;
  12. private String identity;
  13. private String education;
  14. private String bankname;
  15. private String accountno;
  16. private String addressresident;
  17. private String health;
  18. private String postalcode;
  19. private String phonehouse;
  20. private Date collegetm;
  21. private String speciality;
  22. private String nativeplace;
  23. private String worktype;
  24. private String blood;
  25. private String saleno;
  26. private String orglast;
  27. private String joblast;
  28. private String hobby;
  29. private String namespecial;
  30. private String phonespecial;
  31. private String intimes;
  32. private Date contracttime;
  33. private String isteamleader;
  34. private String documentno;
  35. private String hrcode;
  36. private Date regulartm;
  37. private Date intime;
  38. private String salarycode;
  39. private Date birthday;
  40. private String marrycode;
  41. private String status;
  42. private String whichteam;
  43. private String remark;
  44. public String getCheckid() {
  45. return checkid;
  46. }
  47. public void setCheckid(String checkid) {
  48. this.checkid = checkid;
  49. }
  50. public String getId() {
  51. return id;
  52. }
  53. public void setId(String id) {
  54. this.id = id;
  55. }
  56. public String getAddressnow() {
  57. return addressnow;
  58. }
  59. public void setAddressnow(String addressnow) {
  60. this.addressnow = addressnow;
  61. }
  62. public String getNations() {
  63. return nations;
  64. }
  65. public void setNations(String nations) {
  66. this.nations = nations;
  67. }
  68. public String getPoliticalstatus() {
  69. return politicalstatus;
  70. }
  71. public void setPoliticalstatus(String politicalstatus) {
  72. this.politicalstatus = politicalstatus;
  73. }
  74. public String getCollege() {
  75. return college;
  76. }
  77. public void setCollege(String college) {
  78. this.college = college;
  79. }
  80. public String getIdentity() {
  81. return identity;
  82. }
  83. public void setIdentity(String identity) {
  84. this.identity = identity;
  85. }
  86. public String getEducation() {
  87. return education;
  88. }
  89. public void setEducation(String education) {
  90. this.education = education;
  91. }
  92. public String getBankname() {
  93. return bankname;
  94. }
  95. public void setBankname(String bankname) {
  96. this.bankname = bankname;
  97. }
  98. public String getAccountno() {
  99. return accountno;
  100. }
  101. public void setAccountno(String accountno) {
  102. this.accountno = accountno;
  103. }
  104. public String getAddressresident() {
  105. return addressresident;
  106. }
  107. public void setAddressresident(String addressresident) {
  108. this.addressresident = addressresident;
  109. }
  110. public String getHealth() {
  111. return health;
  112. }
  113. public void setHealth(String health) {
  114. this.health = health;
  115. }
  116. public String getPostalcode() {
  117. return postalcode;
  118. }
  119. public void setPostalcode(String postalcode) {
  120. this.postalcode = postalcode;
  121. }
  122. public String getPhonehouse() {
  123. return phonehouse;
  124. }
  125. public void setPhonehouse(String phonehouse) {
  126. this.phonehouse = phonehouse;
  127. }
  128. public Date getCollegetm() {
  129. return collegetm;
  130. }
  131. public void setCollegetm(Date collegetm) {
  132. this.collegetm = collegetm;
  133. }
  134. public String getSpeciality() {
  135. return speciality;
  136. }
  137. public void setSpeciality(String speciality) {
  138. this.speciality = speciality;
  139. }
  140. public String getNativeplace() {
  141. return nativeplace;
  142. }
  143. public void setNativeplace(String nativeplace) {
  144. this.nativeplace = nativeplace;
  145. }
  146. public String getWorktype() {
  147. return worktype;
  148. }
  149. public void setWorktype(String worktype) {
  150. this.worktype = worktype;
  151. }
  152. public String getBlood() {
  153. return blood;
  154. }
  155. public void setBlood(String blood) {
  156. this.blood = blood;
  157. }
  158. public String getSaleno() {
  159. return saleno;
  160. }
  161. public void setSaleno(String saleno) {
  162. this.saleno = saleno;
  163. }
  164. public String getOrglast() {
  165. return orglast;
  166. }
  167. public void setOrglast(String orglast) {
  168. this.orglast = orglast;
  169. }
  170. public String getJoblast() {
  171. return joblast;
  172. }
  173. public void setJoblast(String joblast) {
  174. this.joblast = joblast;
  175. }
  176. public String getHobby() {
  177. return hobby;
  178. }
  179. public void setHobby(String hobby) {
  180. this.hobby = hobby;
  181. }
  182. public String getNamespecial() {
  183. return namespecial;
  184. }
  185. public void setNamespecial(String namespecial) {
  186. this.namespecial = namespecial;
  187. }
  188. public String getPhonespecial() {
  189. return phonespecial;
  190. }
  191. public void setPhonespecial(String phonespecial) {
  192. this.phonespecial = phonespecial;
  193. }
  194. public String getIntimes() {
  195. return intimes;
  196. }
  197. public void setIntimes(String intimes) {
  198. this.intimes = intimes;
  199. }
  200. public Date getContracttime() {
  201. return contracttime;
  202. }
  203. public void setContracttime(Date contracttime) {
  204. this.contracttime = contracttime;
  205. }
  206. public String getIsteamleader() {
  207. return isteamleader;
  208. }
  209. public void setIsteamleader(String isteamleader) {
  210. this.isteamleader = isteamleader;
  211. }
  212. public String getDocumentno() {
  213. return documentno;
  214. }
  215. public void setDocumentno(String documentno) {
  216. this.documentno = documentno;
  217. }
  218. public String getHrcode() {
  219. return hrcode;
  220. }
  221. public void setHrcode(String hrcode) {
  222. this.hrcode = hrcode;
  223. }
  224. public Date getRegulartm() {
  225. return regulartm;
  226. }
  227. public void setRegulartm(Date regulartm) {
  228. this.regulartm = regulartm;
  229. }
  230. public Date getIntime() {
  231. return intime;
  232. }
  233. public void setIntime(Date intime) {
  234. this.intime = intime;
  235. }
  236. public String getSalarycode() {
  237. return salarycode;
  238. }
  239. public void setSalarycode(String salarycode) {
  240. this.salarycode = salarycode;
  241. }
  242. public Date getBirthday() {
  243. return birthday;
  244. }
  245. public void setBirthday(Date birthday) {
  246. this.birthday = birthday;
  247. }
  248. public String getMarrycode() {
  249. return marrycode;
  250. }
  251. public void setMarrycode(String marrycode) {
  252. this.marrycode = marrycode;
  253. }
  254. public String getStatus() {
  255. return status;
  256. }
  257. public void setStatus(String status) {
  258. this.status = status;
  259. }
  260. public String getWhichteam() {
  261. return whichteam;
  262. }
  263. public void setWhichteam(String whichteam) {
  264. this.whichteam = whichteam;
  265. }
  266. public String getRemark() {
  267. return remark;
  268. }
  269. public void setRemark(String remark) {
  270. this.remark = remark;
  271. }
  272. }