bae63f912cb58d7b544d9956cc9597946c93959b.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:BisInspMeetMntsSms
  8. *
  9. * @author lhc
  10. * @date 2019-5-27
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisInspMeetUser extends BaseBean implements Serializable {
  14. public BisInspMeetUser() {
  15. }
  16. @ApiModelProperty(value = "用户id(调用方自己的用户id) 必传", name = "userId")
  17. private String userId;
  18. @ApiModelProperty(value = "用户姓名 必传", name = "name")
  19. private String name;
  20. @ApiModelProperty(value = "国家码,如中国:+86(+必须有)必传", name = "countryCode")
  21. private String countryCode;
  22. @ApiModelProperty(value = "手机号,手机号处理请看表后面具体描述 必传", name = "phone")
  23. private String phone;
  24. @ApiModelProperty(value = "座机号码 (应该包含区号,比如:010-****) 非必传", name = "telephone")
  25. private String telephone;
  26. @ApiModelProperty(value = "邮箱地址", name = "mailbox")
  27. private String mailbox;
  28. @ApiModelProperty(value = "头像地址,头像处理请看表后面具体描述", name = "avatar")
  29. private String avatar;
  30. @ApiModelProperty(value = "部门", name = "dept")
  31. private String dept;
  32. @ApiModelProperty(value = "密码(为空时默认为手机号后六位)", name = "password")
  33. private String password;
  34. public String getUserId() {
  35. return userId;
  36. }
  37. public void setUserId(String userId) {
  38. this.userId = userId;
  39. }
  40. public String getName() {
  41. return name;
  42. }
  43. public void setName(String name) {
  44. this.name = name;
  45. }
  46. public String getCountryCode() {
  47. return countryCode;
  48. }
  49. public void setCountryCode(String countryCode) {
  50. this.countryCode = countryCode;
  51. }
  52. public String getPhone() {
  53. return phone;
  54. }
  55. public void setPhone(String phone) {
  56. this.phone = phone;
  57. }
  58. public String getTelephone() {
  59. return telephone;
  60. }
  61. public void setTelephone(String telephone) {
  62. this.telephone = telephone;
  63. }
  64. public String getMailbox() {
  65. return mailbox;
  66. }
  67. public void setMailbox(String mailbox) {
  68. this.mailbox = mailbox;
  69. }
  70. public String getAvatar() {
  71. return avatar;
  72. }
  73. public void setAvatar(String avatar) {
  74. this.avatar = avatar;
  75. }
  76. public String getDept() {
  77. return dept;
  78. }
  79. public void setDept(String dept) {
  80. this.dept = dept;
  81. }
  82. public String getPassword() {
  83. return password;
  84. }
  85. public void setPassword(String password) {
  86. this.password = password;
  87. }
  88. }