907497e0322432d31d6b3e6919d7c5b85a11f9d2.svn-base 3.4 KB

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