| @@ -34,6 +34,10 @@ public class WxCouponChannelVo extends WxCouponChannel implements Serializable { | |||||
| private Integer remainInventory; | private Integer remainInventory; | ||||
| @io.swagger.annotations.ApiModelProperty(value="封面图",name="coverImg") | @io.swagger.annotations.ApiModelProperty(value="封面图",name="coverImg") | ||||
| private String coverImg; | private String coverImg; | ||||
| @io.swagger.annotations.ApiModelProperty(value="多封面图",name="coverPicture") | |||||
| private String coverPicture; | |||||
| @io.swagger.annotations.ApiModelProperty(value="详情多图",name="detailPicture") | |||||
| private String detailPicture; | |||||
| @io.swagger.annotations.ApiModelProperty(value="券名称",name="title") | @io.swagger.annotations.ApiModelProperty(value="券名称",name="title") | ||||
| private String title; | private String title; | ||||
| @io.swagger.annotations.ApiModelProperty(value="副标题",name="subTitle") | @io.swagger.annotations.ApiModelProperty(value="副标题",name="subTitle") | ||||
| @@ -180,6 +184,8 @@ public class WxCouponChannelVo extends WxCouponChannel implements Serializable { | |||||
| this.setSalePrice(c.getSalePrice()); | this.setSalePrice(c.getSalePrice()); | ||||
| this.setInventory(c.getInventory()); | this.setInventory(c.getInventory()); | ||||
| this.setCoverImg(c.getCoverImg()); | this.setCoverImg(c.getCoverImg()); | ||||
| this.setCoverPicture(c.getCoverPicture()); | |||||
| this.setDetailPicture(c.getDetailPicture()); | |||||
| this.setSubTitle(c.getSubTitle()); | this.setSubTitle(c.getSubTitle()); | ||||
| this.setUsePrice(c.getUsePrice()); | this.setUsePrice(c.getUsePrice()); | ||||
| this.setPrice(c.getPrice()); | this.setPrice(c.getPrice()); | ||||
| @@ -1439,7 +1439,7 @@ | |||||
| </update> | </update> | ||||
| <select id="newfindCList" parameterType="com.iformall.domain.po.WxCoupon" resultMap="BaseResultMap"> | <select id="newfindCList" parameterType="com.iformall.domain.po.WxCoupon" resultMap="BaseResultMap"> | ||||
| select id,coupon_id,version,remain_inventory,inventory,cover_img,title,sub_title,item_group,sale_price,use_price,price,tail_price, | |||||
| select id,coupon_id,version,remain_inventory,inventory,cover_img,cover_picture,detail_picture,title,sub_title,item_group,sale_price,use_price,price,tail_price, | |||||
| orig_price,unit,use_limit_rule,use_limit_quantity,send_type,support_transfer,press_limit_num,auto_refund, | orig_price,unit,use_limit_rule,use_limit_quantity,send_type,support_transfer,press_limit_num,auto_refund, | ||||
| conditions,valid_type,sold_start_time,sold_end_time,valid_start_date,valid_end_date,valid_days,credit_price, | conditions,valid_type,sold_start_time,sold_end_time,valid_start_date,valid_end_date,valid_days,credit_price, | ||||
| remark,content_type,source_type,merchant_type | remark,content_type,source_type,merchant_type | ||||