b23bf2f87641f00b66ca52c9ba0d74e8c2311be1.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspAllRlationPersZjParam
  9. *
  10. * @author lhc
  11. * @date 2020-7-20
  12. */
  13. public class BisInspAllRlationPersZjParam extends PageParam implements Serializable {
  14. // 用户名称
  15. @ApiParam(name = "用户名称")
  16. @ApiModelProperty(value = "用户名称", name = "userCode")
  17. private String userCode;
  18. // 用户名称
  19. @ApiParam(name = "用户名称")
  20. @ApiModelProperty(value = "用户名称", name = "userName")
  21. private String userName;
  22. // 真实姓名
  23. @ApiParam(name = "真实姓名")
  24. @ApiModelProperty(value = "真实姓名", name = "trueName")
  25. private String trueName;
  26. // 手机号码
  27. @ApiParam(name = "手机号码")
  28. @ApiModelProperty(value = "手机号码", name = "mobile")
  29. private String mobile;
  30. // 电子邮箱
  31. @ApiParam(name = "电子邮箱")
  32. @ApiModelProperty(value = "电子邮箱", name = "mail")
  33. private String mail;
  34. // 是否为管理员
  35. @ApiParam(name = "是否为管理员")
  36. @ApiModelProperty(value = "是否为管理员", name = "isAdmin")
  37. private String isAdmin;
  38. // 行政区划码
  39. @ApiParam(name = "行政区划码")
  40. @ApiModelProperty(value = "行政区划码", name = "adcd")
  41. private String adcd;
  42. // 行政区划名称
  43. @ApiParam(name = "行政区划名称")
  44. @ApiModelProperty(value = "行政区划名称", name = "adName")
  45. private String adName;
  46. // 用户头像URL
  47. @ApiParam(name = "用户头像URL")
  48. @ApiModelProperty(value = "用户头像URL", name = "avatar")
  49. private String avatar;
  50. // 修改时间
  51. @ApiParam(name = "修改时间")
  52. @ApiModelProperty(value = "修改时间", name = "modifyTime")
  53. private Date modifyTime;
  54. public BisInspAllRlationPersZjParam() {
  55. }
  56. public String getUserCode() {
  57. return userCode;
  58. }
  59. public void setUserCode(String userCode) {
  60. this.userCode = userCode;
  61. }
  62. public String getUserName() {
  63. return userName;
  64. }
  65. public void setUserName(String userName) {
  66. this.userName = userName;
  67. }
  68. public String getTrueName() {
  69. return trueName;
  70. }
  71. public void setTrueName(String trueName) {
  72. this.trueName = trueName;
  73. }
  74. public String getMobile() {
  75. return mobile;
  76. }
  77. public void setMobile(String mobile) {
  78. this.mobile = mobile;
  79. }
  80. public String getMail() {
  81. return mail;
  82. }
  83. public void setMail(String mail) {
  84. this.mail = mail;
  85. }
  86. public String getIsAdmin() {
  87. return isAdmin;
  88. }
  89. public void setIsAdmin(String isAdmin) {
  90. this.isAdmin = isAdmin;
  91. }
  92. public String getAdcd() {
  93. return adcd;
  94. }
  95. public void setAdcd(String adcd) {
  96. this.adcd = adcd;
  97. }
  98. public String getAdName() {
  99. return adName;
  100. }
  101. public void setAdName(String adName) {
  102. this.adName = adName;
  103. }
  104. public String getAvatar() {
  105. return avatar;
  106. }
  107. public void setAvatar(String avatar) {
  108. this.avatar = avatar;
  109. }
  110. public Date getModifyTime() {
  111. return modifyTime;
  112. }
  113. public void setModifyTime(Date modifyTime) {
  114. this.modifyTime = modifyTime;
  115. }
  116. }