From 53d310fdc06eb97d772d783e7e568272b72a8cb1 Mon Sep 17 00:00:00 2001 From: hupeng Date: Sun, 26 Aug 2018 18:41:44 +0800 Subject: [PATCH] =?UTF-8?q?[C=E7=AB=AF][=E4=BF=AE=E6=94=B9]:=E5=88=B8?= =?UTF-8?q?=E6=B8=A0=E9=81=93=E6=8E=A5=E5=8F=A3=E5=A2=9E=E5=8A=A0=E4=B8=80?= =?UTF-8?q?=E4=BA=9B=E5=BF=85=E8=A6=81=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/simple/domain/vo/WxCouponChannelVo.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/mallinkService/src/main/java/com/simple/domain/vo/WxCouponChannelVo.java b/mallinkService/src/main/java/com/simple/domain/vo/WxCouponChannelVo.java index a548756c8..e85475aa9 100644 --- a/mallinkService/src/main/java/com/simple/domain/vo/WxCouponChannelVo.java +++ b/mallinkService/src/main/java/com/simple/domain/vo/WxCouponChannelVo.java @@ -13,11 +13,20 @@ import java.util.Date; */ public class WxCouponChannelVo extends WxCouponChannel implements Serializable { private static final long serialVersionUID = 1L; + + /*剩余库存**/ @io.swagger.annotations.ApiModelProperty(value="剩余库存",name="remainInventory") private Integer remainInventory; + + /*封面图**/ @io.swagger.annotations.ApiModelProperty(value="封面图",name="coverImg") private String coverImg; + + /*券名称**/ + @io.swagger.annotations.ApiModelProperty(value="券名称",name="title") + private String title; + /*副标题**/ @io.swagger.annotations.ApiModelProperty(value="副标题",name="subTitle") private String subTitle; @@ -31,6 +40,9 @@ public class WxCouponChannelVo extends WxCouponChannel implements Serializable { @io.swagger.annotations.ApiModelProperty(value="面额",name="price") private Integer price; + /*券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)**/ + @io.swagger.annotations.ApiModelProperty(value="券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)",name="type") + private Integer type; @Transient private String salePriceStr; @@ -182,6 +194,8 @@ public class WxCouponChannelVo extends WxCouponChannel implements Serializable { this.useLimitQuantity=wxCoupon.getUseLimitQuantity(); this.usePrice=wxCoupon.getUsePrice(); this.subTitle=wxCoupon.getSubTitle(); + this.title=wxCoupon.getSubTitle(); + this.type=wxCoupon.getType(); return this; }