OutUserChannel.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. package com.goafanti.user.bo;
  2. import java.util.Date;
  3. import com.goafanti.common.utils.excel.Excel;
  4. public class OutUserChannel {
  5. /**
  6. *
  7. * This field was generated by MyBatis Generator.
  8. * This field corresponds to the database column user_channel.id
  9. *
  10. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  11. */
  12. private Integer id;
  13. /**
  14. *
  15. * This field was generated by MyBatis Generator.
  16. * This field corresponds to the database column user_channel.uid
  17. *
  18. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  19. */
  20. private String uid;
  21. /**
  22. *
  23. * This field was generated by MyBatis Generator.
  24. * This field corresponds to the database column user_channel.aid
  25. *
  26. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  27. */
  28. private String aid;
  29. /**
  30. *
  31. * This field was generated by MyBatis Generator.
  32. * This field corresponds to the database column user_channel.status
  33. *
  34. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  35. */
  36. private Integer status;
  37. /**
  38. *
  39. * This field was generated by MyBatis Generator.
  40. * This field corresponds to the database column user_channel.distribution_time
  41. *
  42. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  43. */
  44. private Date distributionTime;
  45. /**
  46. *
  47. * This field was generated by MyBatis Generator.
  48. * This field corresponds to the database column user_channel.create_time
  49. *
  50. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  51. */
  52. private Date createTime;
  53. private String aName;
  54. @Excel(name = "客户名称")
  55. private String userName;
  56. @Excel(name = "省")
  57. private String province;
  58. @Excel(name = "市")
  59. private String city;
  60. @Excel(name = "社会性质",readConverterExp = "0=社会企业,1=科研单位,2=高等院校,3=科研专家,4=科技达人,5=服务机构,6=政府部门,7=商会,8=协会,9=其他组织,10其他个人")
  61. private String societyTag;
  62. public String getSocietyTag() {
  63. return societyTag;
  64. }
  65. public void setSocietyTag(String societyTag) {
  66. this.societyTag = societyTag;
  67. }
  68. private String createTimes;
  69. private String distributionTimes;
  70. @Excel(name = "联系人")
  71. private String contacts;
  72. @Excel(name = "联系人电话")
  73. private String contactMobile;
  74. /**
  75. * This method was generated by MyBatis Generator.
  76. * This method returns the value of the database column user_channel.id
  77. *
  78. * @return the value of user_channel.id
  79. *
  80. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  81. */
  82. public Integer getId() {
  83. return id;
  84. }
  85. /**
  86. * This method was generated by MyBatis Generator.
  87. * This method sets the value of the database column user_channel.id
  88. *
  89. * @param id the value for user_channel.id
  90. *
  91. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  92. */
  93. public void setId(Integer id) {
  94. this.id = id;
  95. }
  96. /**
  97. * This method was generated by MyBatis Generator.
  98. * This method returns the value of the database column user_channel.uid
  99. *
  100. * @return the value of user_channel.uid
  101. *
  102. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  103. */
  104. public String getUid() {
  105. return uid;
  106. }
  107. /**
  108. * This method was generated by MyBatis Generator.
  109. * This method sets the value of the database column user_channel.uid
  110. *
  111. * @param uid the value for user_channel.uid
  112. *
  113. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  114. */
  115. public void setUid(String uid) {
  116. this.uid = uid == null ? null : uid.trim();
  117. }
  118. /**
  119. * This method was generated by MyBatis Generator.
  120. * This method returns the value of the database column user_channel.aid
  121. *
  122. * @return the value of user_channel.aid
  123. *
  124. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  125. */
  126. public String getAid() {
  127. return aid;
  128. }
  129. /**
  130. * This method was generated by MyBatis Generator.
  131. * This method sets the value of the database column user_channel.aid
  132. *
  133. * @param aid the value for user_channel.aid
  134. *
  135. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  136. */
  137. public void setAid(String aid) {
  138. this.aid = aid == null ? null : aid.trim();
  139. }
  140. /**
  141. * This method was generated by MyBatis Generator.
  142. * This method returns the value of the database column user_channel.status
  143. *
  144. * @return the value of user_channel.status
  145. *
  146. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  147. */
  148. public Integer getStatus() {
  149. return status;
  150. }
  151. /**
  152. * This method was generated by MyBatis Generator.
  153. * This method sets the value of the database column user_channel.status
  154. *
  155. * @param status the value for user_channel.status
  156. *
  157. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  158. */
  159. public void setStatus(Integer status) {
  160. this.status = status;
  161. }
  162. /**
  163. * This method was generated by MyBatis Generator.
  164. * This method returns the value of the database column user_channel.distribution_time
  165. *
  166. * @return the value of user_channel.distribution_time
  167. *
  168. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  169. */
  170. public Date getDistributionTime() {
  171. return distributionTime;
  172. }
  173. /**
  174. * This method was generated by MyBatis Generator.
  175. * This method sets the value of the database column user_channel.distribution_time
  176. *
  177. * @param distributionTime the value for user_channel.distribution_time
  178. *
  179. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  180. */
  181. public void setDistributionTime(Date distributionTime) {
  182. this.distributionTime = distributionTime;
  183. }
  184. /**
  185. * This method was generated by MyBatis Generator.
  186. * This method returns the value of the database column user_channel.create_time
  187. *
  188. * @return the value of user_channel.create_time
  189. *
  190. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  191. */
  192. public Date getCreateTime() {
  193. return createTime;
  194. }
  195. /**
  196. * This method was generated by MyBatis Generator.
  197. * This method sets the value of the database column user_channel.create_time
  198. *
  199. * @param createTime the value for user_channel.create_time
  200. *
  201. * @mbg.generated Thu Apr 22 09:06:45 CST 2021
  202. */
  203. public void setCreateTime(Date createTime) {
  204. this.createTime = createTime;
  205. }
  206. public String getUserName() {
  207. return userName;
  208. }
  209. public void setUserName(String userName) {
  210. this.userName = userName;
  211. }
  212. public String getCreateTimes() {
  213. return createTimes;
  214. }
  215. public void setCreateTimes(String createTimes) {
  216. this.createTimes = createTimes;
  217. }
  218. public String getDistributionTimes() {
  219. return distributionTimes;
  220. }
  221. public void setDistributionTimes(String distributionTimes) {
  222. this.distributionTimes = distributionTimes;
  223. }
  224. public String getProvince() {
  225. return province;
  226. }
  227. public void setProvince(String province) {
  228. this.province = province;
  229. }
  230. public String getCity() {
  231. return city;
  232. }
  233. public void setCity(String city) {
  234. this.city = city;
  235. }
  236. public String getContacts() {
  237. return contacts;
  238. }
  239. public void setContacts(String contacts) {
  240. this.contacts = contacts;
  241. }
  242. public String getContactMobile() {
  243. return contactMobile;
  244. }
  245. public void setContactMobile(String contactMobile) {
  246. this.contactMobile = contactMobile;
  247. }
  248. public String getaName() {
  249. return aName;
  250. }
  251. public void setaName(String aName) {
  252. this.aName = aName;
  253. }
  254. }