|
@@ -1,5 +1,6 @@
|
|
|
package com.yonge.cooleshow.biz.dal.vo.coupon;
|
|
package com.yonge.cooleshow.biz.dal.vo.coupon;
|
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
|
|
import com.yonge.cooleshow.biz.dal.enums.ClientEnum;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.SendTypeEnum;
|
|
import com.yonge.cooleshow.biz.dal.enums.SendTypeEnum;
|
|
|
import com.yonge.cooleshow.biz.dal.enums.coupon.CouponCategoryEnum;
|
|
import com.yonge.cooleshow.biz.dal.enums.coupon.CouponCategoryEnum;
|
|
@@ -27,6 +28,8 @@ public class CouponIssueWrapper {
|
|
|
@ApiModelProperty("优惠券id")
|
|
@ApiModelProperty("优惠券id")
|
|
|
private Long couponId;
|
|
private Long couponId;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty("使用类型")
|
|
|
|
|
+ private CouponCategoryEnum useType;
|
|
|
|
|
|
|
|
@ApiModelProperty("优惠券名称")
|
|
@ApiModelProperty("优惠券名称")
|
|
|
private String couponName;
|
|
private String couponName;
|
|
@@ -92,6 +95,14 @@ public class CouponIssueWrapper {
|
|
|
@ApiModelProperty("可用数量")
|
|
@ApiModelProperty("可用数量")
|
|
|
private Long usable;
|
|
private Long usable;
|
|
|
|
|
|
|
|
|
|
+ public CouponCategoryEnum getUseType() {
|
|
|
|
|
+ return useType;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setUseType(CouponCategoryEnum useType) {
|
|
|
|
|
+ this.useType = useType;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
public Long getUsable() {
|
|
public Long getUsable() {
|
|
|
return usable;
|
|
return usable;
|
|
|
}
|
|
}
|