SvipCouponForm.java 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. package com.caimei.modules.coupon.entity;
  2. import com.caimei.modules.user.entity.NewCmShop;
  3. import com.thinkgem.jeesite.common.persistence.DataEntity;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. import java.util.List;
  7. /**
  8. * Description
  9. *
  10. * @author : Charles
  11. * @date : 2021/9/29
  12. */
  13. public class SvipCouponForm extends DataEntity<SvipCouponForm> {
  14. private String id;
  15. /**
  16. * 月份
  17. */
  18. private String month;
  19. private String status;
  20. private NewCmShop shop1;
  21. private NewCmShop shop2;
  22. private NewCmShop shop3;
  23. private NewCmShop shop4;
  24. private String productInfo1; //商品json数据
  25. private String productInfo2; //商品json数据
  26. private String productInfo3; //商品json数据
  27. private String productInfo4; //商品json数据
  28. private String shopName1;
  29. private String shopName2;
  30. private String shopName3;
  31. private String shopName4;
  32. //商品回显
  33. private List<CmCouponAssociate> associateList1;
  34. private List<CmCouponAssociate> associateList2;
  35. private List<CmCouponAssociate> associateList3;
  36. private List<CmCouponAssociate> associateList4;
  37. // /**
  38. // * 网站活动页banner
  39. // */
  40. // private String pcBanner1;
  41. // private String pcBanner2;
  42. // private String pcBanner3;
  43. // private String pcBanner4;
  44. // /**
  45. // * 小程序活动页banner
  46. // */
  47. // private String appletsBanner1;
  48. // private String appletsBanner2;
  49. // private String appletsBanner3;
  50. // private String appletsBanner4;
  51. /**
  52. * 优惠券Id
  53. */
  54. private String couponId1;
  55. private String couponId2;
  56. private String couponId3;
  57. private String couponId4;
  58. /**
  59. * 劵类型 0活动券 1品类券 3店铺券
  60. */
  61. private String couponType1;
  62. private String couponType2;
  63. private String couponType3;
  64. private String couponType4;
  65. /**
  66. * 优惠券金额(面值)
  67. */
  68. private BigDecimal couponAmount1;
  69. private BigDecimal couponAmount2;
  70. private BigDecimal couponAmount3;
  71. private BigDecimal couponAmount4;
  72. /**
  73. * 优惠满减条件金额
  74. */
  75. private BigDecimal touchPrice1;
  76. private BigDecimal touchPrice2;
  77. private BigDecimal touchPrice3;
  78. private BigDecimal touchPrice4;
  79. /**
  80. * 优惠商品:1全商城商品 2指定商品(活动券有效)
  81. */
  82. private String productType1;
  83. private String productType2;
  84. private String productType3;
  85. private String productType4;
  86. /**
  87. * 优惠品类:1产品 2仪器(品类券有效)
  88. */
  89. private String categoryType1;
  90. private String categoryType2;
  91. private String categoryType3;
  92. private String categoryType4;
  93. /**
  94. * 供应商id(店铺券有效)
  95. */
  96. private Integer shopId1;
  97. private Integer shopId2;
  98. private Integer shopId3;
  99. private Integer shopId4;
  100. @Override
  101. public String getId() {
  102. return id;
  103. }
  104. @Override
  105. public void setId(String id) {
  106. this.id = id;
  107. }
  108. public NewCmShop getShop1() {
  109. return shop1;
  110. }
  111. public void setShop1(NewCmShop shop1) {
  112. this.shop1 = shop1;
  113. }
  114. public NewCmShop getShop2() {
  115. return shop2;
  116. }
  117. public void setShop2(NewCmShop shop2) {
  118. this.shop2 = shop2;
  119. }
  120. public NewCmShop getShop3() {
  121. return shop3;
  122. }
  123. public void setShop3(NewCmShop shop3) {
  124. this.shop3 = shop3;
  125. }
  126. public NewCmShop getShop4() {
  127. return shop4;
  128. }
  129. public void setShop4(NewCmShop shop4) {
  130. this.shop4 = shop4;
  131. }
  132. public List<CmCouponAssociate> getAssociateList1() {
  133. return associateList1;
  134. }
  135. public void setAssociateList1(List<CmCouponAssociate> associateList1) {
  136. this.associateList1 = associateList1;
  137. }
  138. public List<CmCouponAssociate> getAssociateList2() {
  139. return associateList2;
  140. }
  141. public void setAssociateList2(List<CmCouponAssociate> associateList2) {
  142. this.associateList2 = associateList2;
  143. }
  144. public List<CmCouponAssociate> getAssociateList3() {
  145. return associateList3;
  146. }
  147. public void setAssociateList3(List<CmCouponAssociate> associateList3) {
  148. this.associateList3 = associateList3;
  149. }
  150. public List<CmCouponAssociate> getAssociateList4() {
  151. return associateList4;
  152. }
  153. public void setAssociateList4(List<CmCouponAssociate> associateList4) {
  154. this.associateList4 = associateList4;
  155. }
  156. public String getShopName1() {
  157. return shopName1;
  158. }
  159. public void setShopName1(String shopName1) {
  160. this.shopName1 = shopName1;
  161. }
  162. public String getShopName2() {
  163. return shopName2;
  164. }
  165. public void setShopName2(String shopName2) {
  166. this.shopName2 = shopName2;
  167. }
  168. public String getShopName3() {
  169. return shopName3;
  170. }
  171. public void setShopName3(String shopName3) {
  172. this.shopName3 = shopName3;
  173. }
  174. public String getShopName4() {
  175. return shopName4;
  176. }
  177. public void setShopName4(String shopName4) {
  178. this.shopName4 = shopName4;
  179. }
  180. public String getProductInfo1() {
  181. return productInfo1;
  182. }
  183. public void setProductInfo1(String productInfo1) {
  184. this.productInfo1 = productInfo1;
  185. }
  186. public String getProductInfo2() {
  187. return productInfo2;
  188. }
  189. public void setProductInfo2(String productInfo2) {
  190. this.productInfo2 = productInfo2;
  191. }
  192. public String getProductInfo3() {
  193. return productInfo3;
  194. }
  195. public void setProductInfo3(String productInfo3) {
  196. this.productInfo3 = productInfo3;
  197. }
  198. public String getProductInfo4() {
  199. return productInfo4;
  200. }
  201. public void setProductInfo4(String productInfo4) {
  202. this.productInfo4 = productInfo4;
  203. }
  204. public String getStatus() {
  205. return status;
  206. }
  207. public void setStatus(String status) {
  208. this.status = status;
  209. }
  210. // public String getPcBanner2() {
  211. // return pcBanner2;
  212. // }
  213. //
  214. // public void setPcBanner2(String pcBanner2) {
  215. // this.pcBanner2 = pcBanner2;
  216. // }
  217. //
  218. // public String getPcBanner3() {
  219. // return pcBanner3;
  220. // }
  221. //
  222. // public void setPcBanner3(String pcBanner3) {
  223. // this.pcBanner3 = pcBanner3;
  224. // }
  225. //
  226. // public String getPcBanner4() {
  227. // return pcBanner4;
  228. // }
  229. //
  230. // public void setPcBanner4(String pcBanner4) {
  231. // this.pcBanner4 = pcBanner4;
  232. // }
  233. //
  234. // public String getAppletsBanner2() {
  235. // return appletsBanner2;
  236. // }
  237. //
  238. // public void setAppletsBanner2(String appletsBanner2) {
  239. // this.appletsBanner2 = appletsBanner2;
  240. // }
  241. //
  242. // public String getAppletsBanner3() {
  243. // return appletsBanner3;
  244. // }
  245. //
  246. // public void setAppletsBanner3(String appletsBanner3) {
  247. // this.appletsBanner3 = appletsBanner3;
  248. // }
  249. //
  250. // public String getAppletsBanner4() {
  251. // return appletsBanner4;
  252. // }
  253. //
  254. // public void setAppletsBanner4(String appletsBanner4) {
  255. // this.appletsBanner4 = appletsBanner4;
  256. // }
  257. //
  258. // public String getPcBanner1() {
  259. // return pcBanner1;
  260. // }
  261. //
  262. // public void setPcBanner1(String pcBanner1) {
  263. // this.pcBanner1 = pcBanner1;
  264. // }
  265. //
  266. // public String getAppletsBanner1() {
  267. // return appletsBanner1;
  268. // }
  269. //
  270. // public void setAppletsBanner1(String appletsBanner1) {
  271. // this.appletsBanner1 = appletsBanner1;
  272. // }
  273. public String getCouponId1() {
  274. return couponId1;
  275. }
  276. public void setCouponId1(String couponId1) {
  277. this.couponId1 = couponId1;
  278. }
  279. public String getCouponId2() {
  280. return couponId2;
  281. }
  282. public void setCouponId2(String couponId2) {
  283. this.couponId2 = couponId2;
  284. }
  285. public String getCouponId3() {
  286. return couponId3;
  287. }
  288. public void setCouponId3(String couponId3) {
  289. this.couponId3 = couponId3;
  290. }
  291. public String getCouponId4() {
  292. return couponId4;
  293. }
  294. public void setCouponId4(String couponId4) {
  295. this.couponId4 = couponId4;
  296. }
  297. public String getMonth() {
  298. return month;
  299. }
  300. public void setMonth(String month) {
  301. this.month = month;
  302. }
  303. public String getCouponType1() {
  304. return couponType1;
  305. }
  306. public void setCouponType1(String couponType1) {
  307. this.couponType1 = couponType1;
  308. }
  309. public String getCouponType2() {
  310. return couponType2;
  311. }
  312. public void setCouponType2(String couponType2) {
  313. this.couponType2 = couponType2;
  314. }
  315. public String getCouponType3() {
  316. return couponType3;
  317. }
  318. public void setCouponType3(String couponType3) {
  319. this.couponType3 = couponType3;
  320. }
  321. public String getCouponType4() {
  322. return couponType4;
  323. }
  324. public void setCouponType4(String couponType4) {
  325. this.couponType4 = couponType4;
  326. }
  327. public String getProductType1() {
  328. return productType1;
  329. }
  330. public void setProductType1(String productType1) {
  331. this.productType1 = productType1;
  332. }
  333. public String getProductType2() {
  334. return productType2;
  335. }
  336. public void setProductType2(String productType2) {
  337. this.productType2 = productType2;
  338. }
  339. public String getProductType3() {
  340. return productType3;
  341. }
  342. public void setProductType3(String productType3) {
  343. this.productType3 = productType3;
  344. }
  345. public String getProductType4() {
  346. return productType4;
  347. }
  348. public void setProductType4(String productType4) {
  349. this.productType4 = productType4;
  350. }
  351. public String getCategoryType1() {
  352. return categoryType1;
  353. }
  354. public void setCategoryType1(String categoryType1) {
  355. this.categoryType1 = categoryType1;
  356. }
  357. public BigDecimal getCouponAmount1() {
  358. return couponAmount1;
  359. }
  360. public void setCouponAmount1(BigDecimal couponAmount1) {
  361. this.couponAmount1 = couponAmount1;
  362. }
  363. public BigDecimal getCouponAmount2() {
  364. return couponAmount2;
  365. }
  366. public void setCouponAmount2(BigDecimal couponAmount2) {
  367. this.couponAmount2 = couponAmount2;
  368. }
  369. public BigDecimal getCouponAmount3() {
  370. return couponAmount3;
  371. }
  372. public void setCouponAmount3(BigDecimal couponAmount3) {
  373. this.couponAmount3 = couponAmount3;
  374. }
  375. public BigDecimal getCouponAmount4() {
  376. return couponAmount4;
  377. }
  378. public void setCouponAmount4(BigDecimal couponAmount4) {
  379. this.couponAmount4 = couponAmount4;
  380. }
  381. public BigDecimal getTouchPrice1() {
  382. return touchPrice1;
  383. }
  384. public void setTouchPrice1(BigDecimal touchPrice1) {
  385. this.touchPrice1 = touchPrice1;
  386. }
  387. public BigDecimal getTouchPrice2() {
  388. return touchPrice2;
  389. }
  390. public void setTouchPrice2(BigDecimal touchPrice2) {
  391. this.touchPrice2 = touchPrice2;
  392. }
  393. public BigDecimal getTouchPrice3() {
  394. return touchPrice3;
  395. }
  396. public void setTouchPrice3(BigDecimal touchPrice3) {
  397. this.touchPrice3 = touchPrice3;
  398. }
  399. public BigDecimal getTouchPrice4() {
  400. return touchPrice4;
  401. }
  402. public void setTouchPrice4(BigDecimal touchPrice4) {
  403. this.touchPrice4 = touchPrice4;
  404. }
  405. public String getCategoryType2() {
  406. return categoryType2;
  407. }
  408. public void setCategoryType2(String categoryType2) {
  409. this.categoryType2 = categoryType2;
  410. }
  411. public String getCategoryType3() {
  412. return categoryType3;
  413. }
  414. public void setCategoryType3(String categoryType3) {
  415. this.categoryType3 = categoryType3;
  416. }
  417. public String getCategoryType4() {
  418. return categoryType4;
  419. }
  420. public void setCategoryType4(String categoryType4) {
  421. this.categoryType4 = categoryType4;
  422. }
  423. public Integer getShopId1() {
  424. return shopId1;
  425. }
  426. public void setShopId1(Integer shopId1) {
  427. this.shopId1 = shopId1;
  428. }
  429. public Integer getShopId2() {
  430. return shopId2;
  431. }
  432. public void setShopId2(Integer shopId2) {
  433. this.shopId2 = shopId2;
  434. }
  435. public Integer getShopId3() {
  436. return shopId3;
  437. }
  438. public void setShopId3(Integer shopId3) {
  439. this.shopId3 = shopId3;
  440. }
  441. public Integer getShopId4() {
  442. return shopId4;
  443. }
  444. public void setShopId4(Integer shopId4) {
  445. this.shopId4 = shopId4;
  446. }
  447. }