7df8f6ce13a625949043fa6fbe49333f48cf7b48.svn-base 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import com.fasterxml.jackson.annotation.JsonProperty;
  6. import io.swagger.annotations.ApiModelProperty;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import org.springframework.format.annotation.DateTimeFormat;
  10. import java.io.Serializable;
  11. import java.util.ArrayList;
  12. import java.util.Date;
  13. import java.util.List;
  14. /**
  15. * entity:BisInspAllRlationPers
  16. *
  17. * @author litf
  18. * @date 2019-2-25
  19. */
  20. @EqualsAndHashCode(callSuper = true)
  21. @Data
  22. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  23. public class BisInspAllRlationPers extends BaseBean implements Serializable {
  24. @ApiModelProperty("所属省份")
  25. private String province;
  26. private String jurisdiction;
  27. @ApiModelProperty("部门名称")
  28. private String dpnm;
  29. @ApiModelProperty(" 职称")
  30. private String dppost;
  31. @ApiModelProperty(" 工作证号")
  32. private String idnm;
  33. @ApiModelProperty(" 政治面貌")
  34. private String plst;
  35. @ApiModelProperty(" 学校")
  36. private String school;
  37. @ApiModelProperty(" 专业")
  38. private String specialty;
  39. @ApiModelProperty(" 照片地址")
  40. private String imgurl;
  41. private String guid;
  42. private String persName;
  43. private String pwd;
  44. private String sex;
  45. private String telnumb;
  46. private String faxnumb;
  47. private String mobilenumb;
  48. private String email;
  49. @DateTimeFormat(pattern = "yyyy-MM-dd")
  50. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  51. private Date bornDate;
  52. @ApiModelProperty("默认机构id,设置后用户登陆后将切换为该机构下数据")
  53. private String orgId;
  54. private String orgNm;
  55. private String admDuty;
  56. @DateTimeFormat(pattern = "yyyy-MM-dd")
  57. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  58. private Date collTime;
  59. private String remark;
  60. private String permission;
  61. private Date loginTm;
  62. private String callnumber;
  63. private String priKey;
  64. @ApiModelProperty(value = "所属系统(长度:64,可为空:Y)", notes = "所属系统")
  65. private String ownerSystem;
  66. @ApiModelProperty(value = "用户类型(1 管理员 2 机构领导 3督查人员,4稽察人员)")
  67. private String persType;
  68. @ApiModelProperty(value = "系统密码加密公钥")
  69. private String pubKey;
  70. @ApiModelProperty("责任处室id")
  71. private String departId;
  72. @ApiModelProperty("责任处室名称")
  73. private String departNm;
  74. private String wUnit;
  75. @ApiModelProperty("绑定机构列表")
  76. private List<BisInspPersOrg> inspPersOrgList;
  77. private List<String> roleIds;
  78. @ApiModelProperty("用户默认分组:通过默认机构查询获取")
  79. private List<BisInspAll> allNode = new ArrayList<>();
  80. @ApiModelProperty("用户所属机构")
  81. private List<BisInspOrg> allOrg = new ArrayList<>();
  82. @ApiModelProperty("用户默认机构")
  83. private BisInspOrg defaultOrg = new BisInspOrg();
  84. @ApiModelProperty("类型名称")
  85. private String persTypeName;
  86. @ApiModelProperty("处室id")
  87. private String planDpId;
  88. @ApiModelProperty("专家分类(11:前期专家;12:建管专家;13:计划专家;14:财务专家;15:质量专家;16:安全专家;19:助理;20:特派员")
  89. private String mohurd;
  90. @ApiModelProperty("年龄")
  91. private Integer age;
  92. private String isEnable;
  93. public String getIsEnable() {
  94. return isEnable;
  95. }
  96. public void setIsEnable(String isEnable) {
  97. this.isEnable = isEnable;
  98. }
  99. public BisInspAllRlationPers() {
  100. }
  101. public String getPlanDpId() {
  102. return planDpId;
  103. }
  104. public void setPlanDpId(String planDpId) {
  105. this.planDpId = planDpId;
  106. }
  107. @Override
  108. public String getProvince() {
  109. return province;
  110. }
  111. @Override
  112. public void setProvince(String province) {
  113. this.province = province;
  114. }
  115. public String getJurisdiction() {
  116. return jurisdiction;
  117. }
  118. public void setJurisdiction(String jurisdiction) {
  119. this.jurisdiction = jurisdiction;
  120. }
  121. public String getCallnumber() {
  122. return callnumber;
  123. }
  124. public void setCallnumber(String callnumber) {
  125. this.callnumber = callnumber;
  126. }
  127. public String getPriKey() {
  128. return priKey;
  129. }
  130. public void setPriKey(String priKey) {
  131. this.priKey = priKey;
  132. }
  133. public String getOwnerSystem() {
  134. return ownerSystem;
  135. }
  136. public void setOwnerSystem(String ownerSystem) {
  137. this.ownerSystem = ownerSystem;
  138. }
  139. public String getPersType() {
  140. return persType;
  141. }
  142. public void setPersType(String persType) {
  143. this.persType = persType;
  144. }
  145. public String getPubKey() {
  146. return pubKey;
  147. }
  148. public void setPubKey(String pubKey) {
  149. this.pubKey = pubKey;
  150. }
  151. public String getDepartId() {
  152. return departId;
  153. }
  154. public void setDepartId(String departId) {
  155. this.departId = departId;
  156. }
  157. public String getDepartNm() {
  158. return departNm;
  159. }
  160. public void setDepartNm(String departNm) {
  161. this.departNm = departNm;
  162. }
  163. @JsonProperty("wUnit")
  164. public String getwUnit() {
  165. return wUnit;
  166. }
  167. @JsonProperty("wUnit")
  168. public void setwUnit(String wUnit) {
  169. this.wUnit = wUnit;
  170. }
  171. public List<BisInspPersOrg> getInspPersOrgList() {
  172. return inspPersOrgList;
  173. }
  174. public void setInspPersOrgList(List<BisInspPersOrg> inspPersOrgList) {
  175. this.inspPersOrgList = inspPersOrgList;
  176. }
  177. public String getPersTypeName() {
  178. return persTypeName;
  179. }
  180. public void setPersTypeName(String persTypeName) {
  181. this.persTypeName = persTypeName;
  182. }
  183. public List<BisInspOrg> getAllOrg() {
  184. return allOrg;
  185. }
  186. public void setAllOrg(List<BisInspOrg> allOrg) {
  187. this.allOrg = allOrg;
  188. }
  189. public BisInspOrg getDefaultOrg() {
  190. return defaultOrg;
  191. }
  192. public void setDefaultOrg(BisInspOrg defaultOrg) {
  193. this.defaultOrg = defaultOrg;
  194. }
  195. public String getDpnm() {
  196. return dpnm;
  197. }
  198. public void setDpnm(String dpnm) {
  199. this.dpnm = dpnm;
  200. }
  201. public String getDppost() {
  202. return dppost;
  203. }
  204. public void setDppost(String dppost) {
  205. this.dppost = dppost;
  206. }
  207. public String getIdnm() {
  208. return idnm;
  209. }
  210. public void setIdnm(String idnm) {
  211. this.idnm = idnm;
  212. }
  213. public String getPlst() {
  214. return plst;
  215. }
  216. public void setPlst(String plst) {
  217. this.plst = plst;
  218. }
  219. public String getSchool() {
  220. return school;
  221. }
  222. public void setSchool(String school) {
  223. this.school = school;
  224. }
  225. public String getSpecialty() {
  226. return specialty;
  227. }
  228. public void setSpecialty(String specialty) {
  229. this.specialty = specialty;
  230. }
  231. public String getImgurl() {
  232. return imgurl;
  233. }
  234. public void setImgurl(String imgurl) {
  235. this.imgurl = imgurl;
  236. }
  237. public String getGuid() {
  238. return guid;
  239. }
  240. public void setGuid(String guid) {
  241. this.guid = guid;
  242. }
  243. public String getPersName() {
  244. return persName;
  245. }
  246. public void setPersName(String persName) {
  247. this.persName = persName;
  248. }
  249. public String getPwd() {
  250. return pwd;
  251. }
  252. public void setPwd(String pwd) {
  253. this.pwd = pwd;
  254. }
  255. public String getSex() {
  256. return sex;
  257. }
  258. public void setSex(String sex) {
  259. this.sex = sex;
  260. }
  261. public String getTelnumb() {
  262. return telnumb;
  263. }
  264. public void setTelnumb(String telnumb) {
  265. this.telnumb = telnumb;
  266. }
  267. public String getFaxnumb() {
  268. return faxnumb;
  269. }
  270. public void setFaxnumb(String faxnumb) {
  271. this.faxnumb = faxnumb;
  272. }
  273. public String getMobilenumb() {
  274. return mobilenumb;
  275. }
  276. public void setMobilenumb(String mobilenumb) {
  277. this.mobilenumb = mobilenumb;
  278. }
  279. public String getEmail() {
  280. return email;
  281. }
  282. public void setEmail(String email) {
  283. this.email = email;
  284. }
  285. public Date getBornDate() {
  286. return bornDate;
  287. }
  288. public void setBornDate(Date bornDate) {
  289. this.bornDate = bornDate;
  290. }
  291. @Override
  292. public String getOrgId() {
  293. return orgId;
  294. }
  295. @Override
  296. public void setOrgId(String orgId) {
  297. this.orgId = orgId;
  298. }
  299. public String getOrgNm() {
  300. return orgNm;
  301. }
  302. public void setOrgNm(String orgNm) {
  303. this.orgNm = orgNm;
  304. }
  305. public String getAdmDuty() {
  306. return admDuty;
  307. }
  308. public void setAdmDuty(String admDuty) {
  309. this.admDuty = admDuty;
  310. }
  311. public Date getCollTime() {
  312. return collTime;
  313. }
  314. public void setCollTime(Date collTime) {
  315. this.collTime = collTime;
  316. }
  317. public String getRemark() {
  318. return remark;
  319. }
  320. public void setRemark(String remark) {
  321. this.remark = remark;
  322. }
  323. public Date getLoginTm() {
  324. return loginTm;
  325. }
  326. public void setLoginTm(Date loginTm) {
  327. this.loginTm = loginTm;
  328. }
  329. public List<BisInspAll> getAllNode() {
  330. return allNode;
  331. }
  332. public void setAllNode(List<BisInspAll> allNode) {
  333. this.allNode = allNode;
  334. }
  335. public String getPermission() {
  336. return permission;
  337. }
  338. public void setPermission(String permission) {
  339. this.permission = permission;
  340. }
  341. public List<String> getRoleIds() {
  342. return roleIds;
  343. }
  344. public void setRoleIds(List<String> roleIds) {
  345. this.roleIds = roleIds;
  346. }
  347. public String getMohurd() {
  348. return mohurd;
  349. }
  350. public void setMohurd(String mohurd) {
  351. this.mohurd = mohurd;
  352. }
  353. public Integer getAge() {
  354. return age;
  355. }
  356. public void setAge(Integer age) {
  357. this.age = age;
  358. }
  359. }