1
0

WechatFollowersEntity.java 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 实体
  6. * 表名 mall_wechat_followers
  7. *
  8. * @author emato
  9. * @email admin@qhdswl.com
  10. * @date 2020-09-03 11:39:37
  11. */
  12. public class WechatFollowersEntity implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 主键
  16. */
  17. private Integer id;
  18. /**
  19. * 商户编号
  20. */
  21. private String merchSn;
  22. /**
  23. * 微信好友数
  24. */
  25. private Integer wechatFollowers;
  26. /**
  27. * 创建人编号
  28. */
  29. private String createrSn;
  30. /**
  31. * 创建时间
  32. */
  33. private Date createTime;
  34. /**
  35. * 修改人编号
  36. */
  37. private String moderSn;
  38. /**
  39. * 修改时间
  40. */
  41. private Date modTime;
  42. /**
  43. * 时间戳
  44. */
  45. private Date tstm;
  46. private String yearAndMonth;
  47. public String getYearAndMonth() {
  48. return yearAndMonth;
  49. }
  50. public void setYearAndMonth(String yearAndMonth) {
  51. this.yearAndMonth = yearAndMonth;
  52. }
  53. /**
  54. * 设置:主键
  55. */
  56. public void setId(Integer id) {
  57. this.id = id;
  58. }
  59. /**
  60. * 获取:主键
  61. */
  62. public Integer getId() {
  63. return id;
  64. }
  65. /**
  66. * 设置:商户编号
  67. */
  68. public void setMerchSn(String merchSn) {
  69. this.merchSn = merchSn;
  70. }
  71. /**
  72. * 获取:商户编号
  73. */
  74. public String getMerchSn() {
  75. return merchSn;
  76. }
  77. /**
  78. * 设置:微信好友数
  79. */
  80. public void setWechatFollowers(Integer wechatFollowers) {
  81. this.wechatFollowers = wechatFollowers;
  82. }
  83. /**
  84. * 获取:微信好友数
  85. */
  86. public Integer getWechatFollowers() {
  87. return wechatFollowers;
  88. }
  89. /**
  90. * 设置:创建人编号
  91. */
  92. public void setCreaterSn(String createrSn) {
  93. this.createrSn = createrSn;
  94. }
  95. /**
  96. * 获取:创建人编号
  97. */
  98. public String getCreaterSn() {
  99. return createrSn;
  100. }
  101. /**
  102. * 设置:创建时间
  103. */
  104. public void setCreateTime(Date createTime) {
  105. this.createTime = createTime;
  106. }
  107. /**
  108. * 获取:创建时间
  109. */
  110. public Date getCreateTime() {
  111. return createTime;
  112. }
  113. /**
  114. * 设置:修改人编号
  115. */
  116. public void setModerSn(String moderSn) {
  117. this.moderSn = moderSn;
  118. }
  119. /**
  120. * 获取:修改人编号
  121. */
  122. public String getModerSn() {
  123. return moderSn;
  124. }
  125. /**
  126. * 设置:修改时间
  127. */
  128. public void setModTime(Date modTime) {
  129. this.modTime = modTime;
  130. }
  131. /**
  132. * 获取:修改时间
  133. */
  134. public Date getModTime() {
  135. return modTime;
  136. }
  137. /**
  138. * 设置:时间戳
  139. */
  140. public void setTstm(Date tstm) {
  141. this.tstm = tstm;
  142. }
  143. /**
  144. * 获取:时间戳
  145. */
  146. public Date getTstm() {
  147. return tstm;
  148. }
  149. }