MkActivitiesPresentIntegralEntity.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. package com.kmall.admin.entity.mk;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import org.springframework.format.annotation.DateTimeFormat;
  4. import java.io.Serializable;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. /**
  8. * 营销活动-赠送积分实体
  9. * 表名 mk_activities_present_integral
  10. *
  11. * @author emato
  12. * @email admin@qhdswl.com
  13. * @date 2022-04-14 10:20:48
  14. */
  15. public class MkActivitiesPresentIntegralEntity implements Serializable {
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * 编号
  19. */
  20. private Long mapId;
  21. /**
  22. * 产品中文名
  23. */
  24. private String productName;
  25. /**
  26. * 赠送方式- 1 :固定值 2:倍率
  27. */
  28. private String activityGiveType;
  29. /**
  30. * 赠送数值
  31. */
  32. private BigDecimal activityGiveNum;
  33. /**
  34. * 门店编号
  35. */
  36. private String shopSn;
  37. /**
  38. * 商品sku
  39. */
  40. private String sku;
  41. /**
  42. * 条形码
  43. */
  44. private String barcode;
  45. /**
  46. * 商品品牌
  47. */
  48. private String productBrand;
  49. /**
  50. * 商品系列
  51. */
  52. private String productSeries;
  53. /**
  54. * 营销活动编号
  55. */
  56. private Long mkaId;
  57. /**
  58. * 是否与积分抵扣互斥,0:不互斥 1:互斥
  59. */
  60. private String rejectScore;
  61. /**
  62. * 截止日期
  63. */
  64. private String deadline;
  65. /**
  66. * 创建时间
  67. */
  68. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  69. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  70. private Date createTime;
  71. /**
  72. * 创建人编号
  73. */
  74. private String createrSn;
  75. /**
  76. * 修改人编号
  77. */
  78. private String moderSn;
  79. /**
  80. * 修改时间
  81. */
  82. @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
  83. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  84. private Date updateTime;
  85. /**
  86. * 设置:编号
  87. */
  88. public void setMapId(Long mapId) {
  89. this.mapId = mapId;
  90. }
  91. /**
  92. * 获取:编号
  93. */
  94. public Long getMapId() {
  95. return mapId;
  96. }
  97. /**
  98. * 设置:产品中文名
  99. */
  100. public void setProductName(String productName) {
  101. this.productName = productName;
  102. }
  103. /**
  104. * 获取:产品中文名
  105. */
  106. public String getProductName() {
  107. return productName;
  108. }
  109. /**
  110. * 设置:赠送方式- 1 :固定值 2:倍率
  111. */
  112. public void setActivityGiveType(String activityGiveType) {
  113. this.activityGiveType = activityGiveType;
  114. }
  115. /**
  116. * 获取:赠送方式- 1 :固定值 2:倍率
  117. */
  118. public String getActivityGiveType() {
  119. return activityGiveType;
  120. }
  121. /**
  122. * 设置:赠送数值
  123. */
  124. public void setActivityGiveNum(BigDecimal activityGiveNum) {
  125. this.activityGiveNum = activityGiveNum;
  126. }
  127. /**
  128. * 获取:赠送数值
  129. */
  130. public BigDecimal getActivityGiveNum() {
  131. return activityGiveNum;
  132. }
  133. /**
  134. * 设置:门店编号
  135. */
  136. public void setShopSn(String shopSn) {
  137. this.shopSn = shopSn;
  138. }
  139. /**
  140. * 获取:门店编号
  141. */
  142. public String getShopSn() {
  143. return shopSn;
  144. }
  145. /**
  146. * 设置:商品sku
  147. */
  148. public void setSku(String sku) {
  149. this.sku = sku;
  150. }
  151. /**
  152. * 获取:商品sku
  153. */
  154. public String getSku() {
  155. return sku;
  156. }
  157. /**
  158. * 设置:条形码
  159. */
  160. public void setBarcode(String barcode) {
  161. this.barcode = barcode;
  162. }
  163. /**
  164. * 获取:条形码
  165. */
  166. public String getBarcode() {
  167. return barcode;
  168. }
  169. /**
  170. * 设置:商品品牌
  171. */
  172. public void setProductBrand(String productBrand) {
  173. this.productBrand = productBrand;
  174. }
  175. /**
  176. * 获取:商品品牌
  177. */
  178. public String getProductBrand() {
  179. return productBrand;
  180. }
  181. /**
  182. * 设置:商品系列
  183. */
  184. public void setProductSeries(String productSeries) {
  185. this.productSeries = productSeries;
  186. }
  187. /**
  188. * 获取:商品系列
  189. */
  190. public String getProductSeries() {
  191. return productSeries;
  192. }
  193. /**
  194. * 设置:营销活动编号
  195. */
  196. public void setMkaId(Long mkaId) {
  197. this.mkaId = mkaId;
  198. }
  199. /**
  200. * 获取:营销活动编号
  201. */
  202. public Long getMkaId() {
  203. return mkaId;
  204. }
  205. /**
  206. * 设置:是否与积分抵扣互斥,0:不互斥 1:互斥
  207. */
  208. public void setRejectScore(String rejectScore) {
  209. this.rejectScore = rejectScore;
  210. }
  211. /**
  212. * 获取:是否与积分抵扣互斥,0:不互斥 1:互斥
  213. */
  214. public String getRejectScore() {
  215. return rejectScore;
  216. }
  217. /**
  218. * 设置:截止日期
  219. */
  220. public void setDeadline(String deadline) {
  221. this.deadline = deadline;
  222. }
  223. /**
  224. * 获取:截止日期
  225. */
  226. public String getDeadline() {
  227. return deadline;
  228. }
  229. /**
  230. * 设置:创建时间
  231. */
  232. public void setCreateTime(Date createTime) {
  233. this.createTime = createTime;
  234. }
  235. /**
  236. * 获取:创建时间
  237. */
  238. public Date getCreateTime() {
  239. return createTime;
  240. }
  241. /**
  242. * 设置:创建人编号
  243. */
  244. public void setCreaterSn(String createrSn) {
  245. this.createrSn = createrSn;
  246. }
  247. /**
  248. * 获取:创建人编号
  249. */
  250. public String getCreaterSn() {
  251. return createrSn;
  252. }
  253. /**
  254. * 设置:修改人编号
  255. */
  256. public void setModerSn(String moderSn) {
  257. this.moderSn = moderSn;
  258. }
  259. /**
  260. * 获取:修改人编号
  261. */
  262. public String getModerSn() {
  263. return moderSn;
  264. }
  265. /**
  266. * 设置:修改时间
  267. */
  268. public void setUpdateTime(Date updateTime) {
  269. this.updateTime = updateTime;
  270. }
  271. /**
  272. * 获取:修改时间
  273. */
  274. public Date getUpdateTime() {
  275. return updateTime;
  276. }
  277. }