| @@ -111,14 +111,34 @@ public class WxCouponOrderBVo extends WxCouponOrder{ | |||||
| @io.swagger.annotations.ApiModelProperty(value="商户列表",name="merchantVoList") | @io.swagger.annotations.ApiModelProperty(value="商户列表",name="merchantVoList") | ||||
| private List<WxMerchantVo> merchantVoList; | private List<WxMerchantVo> merchantVoList; | ||||
| @Transient | |||||
| private Date startDate; | |||||
| @Transient | |||||
| private Date endDate; | |||||
| @Transient | @Transient | ||||
| private Long couponId; | private Long couponId; | ||||
| @Transient | @Transient | ||||
| private Integer couponType; | private Integer couponType; | ||||
| public Date getStartDate() { | |||||
| return startDate; | |||||
| } | |||||
| @Override | |||||
| public void setStartDate(Date startDate) { | |||||
| this.startDate = startDate; | |||||
| } | |||||
| public Date getEndDate() { | |||||
| return endDate; | |||||
| } | |||||
| public void setEndDate(Date endDate) { | |||||
| this.endDate = endDate; | |||||
| } | |||||
| @Override | |||||
| public Long getCouponId() { | public Long getCouponId() { | ||||
| return couponId; | return couponId; | ||||
| } | } | ||||