609efc206146fd9e647d72f21a89c2c696bb89cd.svn-base 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. package cn.com.goldenwater.dcproj.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. import java.util.List;
  5. public class BisInspAllRelationPersPrivDto implements Serializable {
  6. private static final long serialVersionUID = 1L;
  7. @ApiModelProperty(value = "用户id", notes = "", required = true)
  8. private String guid;
  9. @ApiModelProperty(value = "(长度:7,可为空:Y)", notes = "")
  10. private String bornDate;
  11. //部门名称
  12. @ApiModelProperty(value = "部门名称(长度:100,可为空:Y)", notes = "部门名称")
  13. private String dpnm;
  14. //权限
  15. @ApiModelProperty(value = "权限(长度:50,可为空:Y,默认值:0)", notes = "权限")
  16. private String permission;
  17. @ApiModelProperty(value = "(长度:11,可为空:Y)", notes = "")
  18. private String collTime;
  19. @ApiModelProperty(value = "(长度:20,可为空:Y)", notes = "")
  20. private String faxnumb;
  21. //照片地址
  22. @ApiModelProperty(value = "照片地址(长度:2,048,可为空:Y)", notes = "照片地址")
  23. private String imgurl;
  24. @ApiModelProperty(value = "(长度:12,可为空:Y)", notes = "")
  25. private String mobilenumb;
  26. //学校
  27. @ApiModelProperty(value = "学校(长度:50,可为空:Y)", notes = "学校")
  28. private String school;
  29. @ApiModelProperty(value = "(长度:2,048,可为空:Y)", notes = "")
  30. private String remark;
  31. //工作证号
  32. @ApiModelProperty(value = "工作证号(长度:50,可为空:Y)", notes = "工作证号")
  33. private String idnm;
  34. @ApiModelProperty(value = "(长度:1,可为空:Y)", notes = "")
  35. private String sex;
  36. //职称
  37. @ApiModelProperty(value = "职称(长度:100,可为空:Y)", notes = "职称")
  38. private String dppost;
  39. @ApiModelProperty(value = "(长度:100,可为空:Y)", notes = "")
  40. private String callnumber;
  41. @ApiModelProperty(value = "(长度:20,可为空:Y)", notes = "")
  42. private String telnumb;
  43. @ApiModelProperty(value = "(长度:30,可为空:Y)", notes = "")
  44. private String orgId;
  45. //专业
  46. @ApiModelProperty(value = "专业(长度:50,可为空:Y)", notes = "专业")
  47. private String specialty;
  48. //用户创建时间
  49. @ApiModelProperty(value = "用户创建时间(长度:7,可为空:Y,默认值:SYSDATE)", notes = "用户创建时间")
  50. private String intm;
  51. @ApiModelProperty(value = "(长度:60,可为空:Y)", notes = "")
  52. private String email;
  53. //政治面貌
  54. @ApiModelProperty(value = "政治面貌(长度:50,可为空:Y)", notes = "政治面貌")
  55. private String plst;
  56. @ApiModelProperty(value = "(长度:40,可为空:N)", notes = "", required = true)
  57. private String persName;
  58. //用户最新登录时间
  59. @ApiModelProperty(value = "用户最新登录时间(长度:7,可为空:Y)", notes = "用户最新登录时间")
  60. private String loginTm;
  61. @ApiModelProperty(value = "(长度:100,可为空:Y)", notes = "")
  62. private String admDuty;
  63. @ApiModelProperty(value = "(长度:256,可为空:Y)", notes = "")
  64. private String orgNm;
  65. @ApiModelProperty(value = "(长度:32,可为空:N)", notes = "")
  66. private String ownerSystem;
  67. @ApiModelProperty(value = "菜单", notes = "")
  68. private List<MenuDto> menu;
  69. @ApiModelProperty(value = "权限", notes = "")
  70. private List<PrivSysDto> priv;
  71. public BisInspAllRelationPersPrivDto() {
  72. }
  73. public List<MenuDto> getMenu() {
  74. return menu;
  75. }
  76. public void setMenu(List<MenuDto> menu) {
  77. this.menu = menu;
  78. }
  79. public List<PrivSysDto> getPriv() {
  80. return priv;
  81. }
  82. public void setPriv(List<PrivSysDto> priv) {
  83. this.priv = priv;
  84. }
  85. public String getGuid() {
  86. return guid;
  87. }
  88. public void setGuid(String guid) {
  89. this.guid = guid;
  90. }
  91. public String getBornDate() {
  92. return bornDate;
  93. }
  94. public void setBornDate(String bornDate) {
  95. this.bornDate = bornDate;
  96. }
  97. public String getDpnm() {
  98. return dpnm;
  99. }
  100. public void setDpnm(String dpnm) {
  101. this.dpnm = dpnm;
  102. }
  103. public String getPermission() {
  104. return permission;
  105. }
  106. public void setPermission(String permission) {
  107. this.permission = permission;
  108. }
  109. public String getCollTime() {
  110. return collTime;
  111. }
  112. public void setCollTime(String collTime) {
  113. this.collTime = collTime;
  114. }
  115. public String getFaxnumb() {
  116. return faxnumb;
  117. }
  118. public void setFaxnumb(String faxnumb) {
  119. this.faxnumb = faxnumb;
  120. }
  121. public String getImgurl() {
  122. return imgurl;
  123. }
  124. public void setImgurl(String imgurl) {
  125. this.imgurl = imgurl;
  126. }
  127. public String getMobilenumb() {
  128. return mobilenumb;
  129. }
  130. public void setMobilenumb(String mobilenumb) {
  131. this.mobilenumb = mobilenumb;
  132. }
  133. public String getSchool() {
  134. return school;
  135. }
  136. public void setSchool(String school) {
  137. this.school = school;
  138. }
  139. public String getRemark() {
  140. return remark;
  141. }
  142. public void setRemark(String remark) {
  143. this.remark = remark;
  144. }
  145. public String getIdnm() {
  146. return idnm;
  147. }
  148. public void setIdnm(String idnm) {
  149. this.idnm = idnm;
  150. }
  151. public String getSex() {
  152. return sex;
  153. }
  154. public void setSex(String sex) {
  155. this.sex = sex;
  156. }
  157. public String getDppost() {
  158. return dppost;
  159. }
  160. public void setDppost(String dppost) {
  161. this.dppost = dppost;
  162. }
  163. public String getCallnumber() {
  164. return callnumber;
  165. }
  166. public void setCallnumber(String callnumber) {
  167. this.callnumber = callnumber;
  168. }
  169. public String getTelnumb() {
  170. return telnumb;
  171. }
  172. public void setTelnumb(String telnumb) {
  173. this.telnumb = telnumb;
  174. }
  175. public String getOrgId() {
  176. return orgId;
  177. }
  178. public void setOrgId(String orgId) {
  179. this.orgId = orgId;
  180. }
  181. public String getSpecialty() {
  182. return specialty;
  183. }
  184. public void setSpecialty(String specialty) {
  185. this.specialty = specialty;
  186. }
  187. public String getIntm() {
  188. return intm;
  189. }
  190. public void setIntm(String intm) {
  191. this.intm = intm;
  192. }
  193. public String getEmail() {
  194. return email;
  195. }
  196. public void setEmail(String email) {
  197. this.email = email;
  198. }
  199. public String getPlst() {
  200. return plst;
  201. }
  202. public void setPlst(String plst) {
  203. this.plst = plst;
  204. }
  205. public String getPersName() {
  206. return persName;
  207. }
  208. public void setPersName(String persName) {
  209. this.persName = persName;
  210. }
  211. public String getLoginTm() {
  212. return loginTm;
  213. }
  214. public void setLoginTm(String loginTm) {
  215. this.loginTm = loginTm;
  216. }
  217. public String getAdmDuty() {
  218. return admDuty;
  219. }
  220. public void setAdmDuty(String admDuty) {
  221. this.admDuty = admDuty;
  222. }
  223. public String getOrgNm() {
  224. return orgNm;
  225. }
  226. public void setOrgNm(String orgNm) {
  227. this.orgNm = orgNm;
  228. }
  229. public String getOwnerSystem() {
  230. return ownerSystem;
  231. }
  232. public void setOwnerSystem(String ownerSystem) {
  233. this.ownerSystem = ownerSystem;
  234. }
  235. }