123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- package com.caimei.modules.coupon.entity;
- import com.caimei.modules.user.entity.NewCmShop;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.util.List;
- /**
- * Description
- *
- * @author : Charles
- * @date : 2021/9/29
- */
- public class SvipCouponForm extends DataEntity<SvipCouponForm> {
- private String id;
- /**
- * 月份
- */
- private String month;
- private String status;
- private NewCmShop shop1;
- private NewCmShop shop2;
- private NewCmShop shop3;
- private NewCmShop shop4;
- private String productInfo1; //商品json数据
- private String productInfo2; //商品json数据
- private String productInfo3; //商品json数据
- private String productInfo4; //商品json数据
- private String shopName1;
- private String shopName2;
- private String shopName3;
- private String shopName4;
- //商品回显
- private List<CmCouponAssociate> associateList1;
- private List<CmCouponAssociate> associateList2;
- private List<CmCouponAssociate> associateList3;
- private List<CmCouponAssociate> associateList4;
- // /**
- // * 网站活动页banner
- // */
- // private String pcBanner1;
- // private String pcBanner2;
- // private String pcBanner3;
- // private String pcBanner4;
- // /**
- // * 小程序活动页banner
- // */
- // private String appletsBanner1;
- // private String appletsBanner2;
- // private String appletsBanner3;
- // private String appletsBanner4;
- /**
- * 优惠券Id
- */
- private String couponId1;
- private String couponId2;
- private String couponId3;
- private String couponId4;
- /**
- * 劵类型 0活动券 1品类券 3店铺券
- */
- private String couponType1;
- private String couponType2;
- private String couponType3;
- private String couponType4;
- /**
- * 优惠券金额(面值)
- */
- private BigDecimal couponAmount1;
- private BigDecimal couponAmount2;
- private BigDecimal couponAmount3;
- private BigDecimal couponAmount4;
- /**
- * 优惠满减条件金额
- */
- private BigDecimal touchPrice1;
- private BigDecimal touchPrice2;
- private BigDecimal touchPrice3;
- private BigDecimal touchPrice4;
- /**
- * 优惠商品:1全商城商品 2指定商品(活动券有效)
- */
- private String productType1;
- private String productType2;
- private String productType3;
- private String productType4;
- /**
- * 优惠品类:1产品 2仪器(品类券有效)
- */
- private String categoryType1;
- private String categoryType2;
- private String categoryType3;
- private String categoryType4;
- /**
- * 供应商id(店铺券有效)
- */
- private Integer shopId1;
- private Integer shopId2;
- private Integer shopId3;
- private Integer shopId4;
- @Override
- public String getId() {
- return id;
- }
- @Override
- public void setId(String id) {
- this.id = id;
- }
- public NewCmShop getShop1() {
- return shop1;
- }
- public void setShop1(NewCmShop shop1) {
- this.shop1 = shop1;
- }
- public NewCmShop getShop2() {
- return shop2;
- }
- public void setShop2(NewCmShop shop2) {
- this.shop2 = shop2;
- }
- public NewCmShop getShop3() {
- return shop3;
- }
- public void setShop3(NewCmShop shop3) {
- this.shop3 = shop3;
- }
- public NewCmShop getShop4() {
- return shop4;
- }
- public void setShop4(NewCmShop shop4) {
- this.shop4 = shop4;
- }
- public List<CmCouponAssociate> getAssociateList1() {
- return associateList1;
- }
- public void setAssociateList1(List<CmCouponAssociate> associateList1) {
- this.associateList1 = associateList1;
- }
- public List<CmCouponAssociate> getAssociateList2() {
- return associateList2;
- }
- public void setAssociateList2(List<CmCouponAssociate> associateList2) {
- this.associateList2 = associateList2;
- }
- public List<CmCouponAssociate> getAssociateList3() {
- return associateList3;
- }
- public void setAssociateList3(List<CmCouponAssociate> associateList3) {
- this.associateList3 = associateList3;
- }
- public List<CmCouponAssociate> getAssociateList4() {
- return associateList4;
- }
- public void setAssociateList4(List<CmCouponAssociate> associateList4) {
- this.associateList4 = associateList4;
- }
- public String getShopName1() {
- return shopName1;
- }
- public void setShopName1(String shopName1) {
- this.shopName1 = shopName1;
- }
- public String getShopName2() {
- return shopName2;
- }
- public void setShopName2(String shopName2) {
- this.shopName2 = shopName2;
- }
- public String getShopName3() {
- return shopName3;
- }
- public void setShopName3(String shopName3) {
- this.shopName3 = shopName3;
- }
- public String getShopName4() {
- return shopName4;
- }
- public void setShopName4(String shopName4) {
- this.shopName4 = shopName4;
- }
- public String getProductInfo1() {
- return productInfo1;
- }
- public void setProductInfo1(String productInfo1) {
- this.productInfo1 = productInfo1;
- }
- public String getProductInfo2() {
- return productInfo2;
- }
- public void setProductInfo2(String productInfo2) {
- this.productInfo2 = productInfo2;
- }
- public String getProductInfo3() {
- return productInfo3;
- }
- public void setProductInfo3(String productInfo3) {
- this.productInfo3 = productInfo3;
- }
- public String getProductInfo4() {
- return productInfo4;
- }
- public void setProductInfo4(String productInfo4) {
- this.productInfo4 = productInfo4;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- // public String getPcBanner2() {
- // return pcBanner2;
- // }
- //
- // public void setPcBanner2(String pcBanner2) {
- // this.pcBanner2 = pcBanner2;
- // }
- //
- // public String getPcBanner3() {
- // return pcBanner3;
- // }
- //
- // public void setPcBanner3(String pcBanner3) {
- // this.pcBanner3 = pcBanner3;
- // }
- //
- // public String getPcBanner4() {
- // return pcBanner4;
- // }
- //
- // public void setPcBanner4(String pcBanner4) {
- // this.pcBanner4 = pcBanner4;
- // }
- //
- // public String getAppletsBanner2() {
- // return appletsBanner2;
- // }
- //
- // public void setAppletsBanner2(String appletsBanner2) {
- // this.appletsBanner2 = appletsBanner2;
- // }
- //
- // public String getAppletsBanner3() {
- // return appletsBanner3;
- // }
- //
- // public void setAppletsBanner3(String appletsBanner3) {
- // this.appletsBanner3 = appletsBanner3;
- // }
- //
- // public String getAppletsBanner4() {
- // return appletsBanner4;
- // }
- //
- // public void setAppletsBanner4(String appletsBanner4) {
- // this.appletsBanner4 = appletsBanner4;
- // }
- //
- // public String getPcBanner1() {
- // return pcBanner1;
- // }
- //
- // public void setPcBanner1(String pcBanner1) {
- // this.pcBanner1 = pcBanner1;
- // }
- //
- // public String getAppletsBanner1() {
- // return appletsBanner1;
- // }
- //
- // public void setAppletsBanner1(String appletsBanner1) {
- // this.appletsBanner1 = appletsBanner1;
- // }
- public String getCouponId1() {
- return couponId1;
- }
- public void setCouponId1(String couponId1) {
- this.couponId1 = couponId1;
- }
- public String getCouponId2() {
- return couponId2;
- }
- public void setCouponId2(String couponId2) {
- this.couponId2 = couponId2;
- }
- public String getCouponId3() {
- return couponId3;
- }
- public void setCouponId3(String couponId3) {
- this.couponId3 = couponId3;
- }
- public String getCouponId4() {
- return couponId4;
- }
- public void setCouponId4(String couponId4) {
- this.couponId4 = couponId4;
- }
- public String getMonth() {
- return month;
- }
- public void setMonth(String month) {
- this.month = month;
- }
- public String getCouponType1() {
- return couponType1;
- }
- public void setCouponType1(String couponType1) {
- this.couponType1 = couponType1;
- }
- public String getCouponType2() {
- return couponType2;
- }
- public void setCouponType2(String couponType2) {
- this.couponType2 = couponType2;
- }
- public String getCouponType3() {
- return couponType3;
- }
- public void setCouponType3(String couponType3) {
- this.couponType3 = couponType3;
- }
- public String getCouponType4() {
- return couponType4;
- }
- public void setCouponType4(String couponType4) {
- this.couponType4 = couponType4;
- }
- public String getProductType1() {
- return productType1;
- }
- public void setProductType1(String productType1) {
- this.productType1 = productType1;
- }
- public String getProductType2() {
- return productType2;
- }
- public void setProductType2(String productType2) {
- this.productType2 = productType2;
- }
- public String getProductType3() {
- return productType3;
- }
- public void setProductType3(String productType3) {
- this.productType3 = productType3;
- }
- public String getProductType4() {
- return productType4;
- }
- public void setProductType4(String productType4) {
- this.productType4 = productType4;
- }
- public String getCategoryType1() {
- return categoryType1;
- }
- public void setCategoryType1(String categoryType1) {
- this.categoryType1 = categoryType1;
- }
- public BigDecimal getCouponAmount1() {
- return couponAmount1;
- }
- public void setCouponAmount1(BigDecimal couponAmount1) {
- this.couponAmount1 = couponAmount1;
- }
- public BigDecimal getCouponAmount2() {
- return couponAmount2;
- }
- public void setCouponAmount2(BigDecimal couponAmount2) {
- this.couponAmount2 = couponAmount2;
- }
- public BigDecimal getCouponAmount3() {
- return couponAmount3;
- }
- public void setCouponAmount3(BigDecimal couponAmount3) {
- this.couponAmount3 = couponAmount3;
- }
- public BigDecimal getCouponAmount4() {
- return couponAmount4;
- }
- public void setCouponAmount4(BigDecimal couponAmount4) {
- this.couponAmount4 = couponAmount4;
- }
- public BigDecimal getTouchPrice1() {
- return touchPrice1;
- }
- public void setTouchPrice1(BigDecimal touchPrice1) {
- this.touchPrice1 = touchPrice1;
- }
- public BigDecimal getTouchPrice2() {
- return touchPrice2;
- }
- public void setTouchPrice2(BigDecimal touchPrice2) {
- this.touchPrice2 = touchPrice2;
- }
- public BigDecimal getTouchPrice3() {
- return touchPrice3;
- }
- public void setTouchPrice3(BigDecimal touchPrice3) {
- this.touchPrice3 = touchPrice3;
- }
- public BigDecimal getTouchPrice4() {
- return touchPrice4;
- }
- public void setTouchPrice4(BigDecimal touchPrice4) {
- this.touchPrice4 = touchPrice4;
- }
- public String getCategoryType2() {
- return categoryType2;
- }
- public void setCategoryType2(String categoryType2) {
- this.categoryType2 = categoryType2;
- }
- public String getCategoryType3() {
- return categoryType3;
- }
- public void setCategoryType3(String categoryType3) {
- this.categoryType3 = categoryType3;
- }
- public String getCategoryType4() {
- return categoryType4;
- }
- public void setCategoryType4(String categoryType4) {
- this.categoryType4 = categoryType4;
- }
- public Integer getShopId1() {
- return shopId1;
- }
- public void setShopId1(Integer shopId1) {
- this.shopId1 = shopId1;
- }
- public Integer getShopId2() {
- return shopId2;
- }
- public void setShopId2(Integer shopId2) {
- this.shopId2 = shopId2;
- }
- public Integer getShopId3() {
- return shopId3;
- }
- public void setShopId3(Integer shopId3) {
- this.shopId3 = shopId3;
- }
- public Integer getShopId4() {
- return shopId4;
- }
- public void setShopId4(Integer shopId4) {
- this.shopId4 = shopId4;
- }
- }
|