Users.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. package com.template.model.weixin;
  2. /**
  3. * 游客表,
  4. */
  5. public class Users {
  6. public int id;
  7. public String card_number; // 身份证
  8. public String user_name;
  9. public String user_phone;
  10. public String user_zz; // 职务
  11. public String openid; // 微信openid
  12. public String create_time;
  13. public String remark; // 备注
  14. public int identity_type; // 用户分类
  15. private String contactId; // 关联人id(用于常联系人关联)
  16. private String contactName; // 关联人姓名(用于常联系人关联)
  17. private String dataType; // 数据类型
  18. private String headPhoto; // 用户头像地址
  19. private String collect_hotel; // 收藏酒店
  20. private String live_hotel;// 住过酒店
  21. public int getId() {
  22. return id;
  23. }
  24. public void setId(int id) {
  25. this.id = id;
  26. }
  27. public String getCard_number() {
  28. return card_number;
  29. }
  30. public void setCard_number(String card_number) {
  31. this.card_number = card_number;
  32. }
  33. public String getUser_name() {
  34. return user_name;
  35. }
  36. public void setUser_name(String user_name) {
  37. this.user_name = user_name;
  38. }
  39. public String getUser_phone() {
  40. return user_phone;
  41. }
  42. public void setUser_phone(String user_phone) {
  43. this.user_phone = user_phone;
  44. }
  45. public String getUser_zz() {
  46. return user_zz;
  47. }
  48. public void setUser_zz(String user_zz) {
  49. this.user_zz = user_zz;
  50. }
  51. public String getOpenid() {
  52. return openid;
  53. }
  54. public void setOpenid(String openid) {
  55. this.openid = openid;
  56. }
  57. public String getCreate_time() {
  58. return create_time;
  59. }
  60. public void setCreate_time(String create_time) {
  61. this.create_time = create_time;
  62. }
  63. public String getRemark() {
  64. return remark;
  65. }
  66. public void setRemark(String remark) {
  67. this.remark = remark;
  68. }
  69. public int getIdentity_type() {
  70. return identity_type;
  71. }
  72. public void setIdentity_type(int identity_type) {
  73. this.identity_type = identity_type;
  74. }
  75. public String getContactId() {
  76. return contactId;
  77. }
  78. public void setContactId(String contactId) {
  79. this.contactId = contactId;
  80. }
  81. public String getContactName() {
  82. return contactName;
  83. }
  84. public void setContactName(String contactName) {
  85. this.contactName = contactName;
  86. }
  87. public String getDataType() {
  88. return dataType;
  89. }
  90. public void setDataType(String dataType) {
  91. this.dataType = dataType;
  92. }
  93. public String getHeadPhoto() {
  94. return headPhoto;
  95. }
  96. public void setHeadPhoto(String headPhoto) {
  97. this.headPhoto = headPhoto;
  98. }
  99. public String getCollect_hotel() {
  100. return collect_hotel;
  101. }
  102. public void setCollect_hotel(String collect_hotel) {
  103. this.collect_hotel = collect_hotel;
  104. }
  105. public String getLive_hotel() {
  106. return live_hotel;
  107. }
  108. public void setLive_hotel(String live_hotel) {
  109. this.live_hotel = live_hotel;
  110. }
  111. }