Просмотр исходного кода

[banner图支付][修改]:banner图券支付支持

release_toaliyun_real
Stormeye.Wu 7 лет назад
Родитель
Сommit
2ebc01fbc9
2 измененных файлов: 23 добавлений и 0 удалений
  1. +12
    -0
      mallinkService/src/main/java/com/simple/domain/vo/WxCouponCVo.java
  2. +11
    -0
      mallinkService/src/main/java/com/simple/domain/vo/WxCouponChannelVo.java

+ 12
- 0
mallinkService/src/main/java/com/simple/domain/vo/WxCouponCVo.java Просмотреть файл

@@ -122,6 +122,9 @@ public class WxCouponCVo implements Serializable {
/*面额**/
@io.swagger.annotations.ApiModelProperty(value="面额",name="price")
private Integer price;
/*单位**/
@io.swagger.annotations.ApiModelProperty(value="单位0:钱分,1:小时",name="unit")
private Integer unit;
/*剩余库存**/
@io.swagger.annotations.ApiModelProperty(value="剩余库存",name="remainInventory")
private Integer remainInventory;
@@ -310,6 +313,15 @@ public class WxCouponCVo implements Serializable {
public void setPrice(Integer _price) {
price = _price;
}

public Integer getUnit() {
return unit;
}

public void setUnit(Integer unit) {
this.unit = unit;
}

public Integer getRemainInventory() {
return remainInventory;
}


+ 11
- 0
mallinkService/src/main/java/com/simple/domain/vo/WxCouponChannelVo.java Просмотреть файл

@@ -39,6 +39,9 @@ public class WxCouponChannelVo extends WxCouponChannel implements Serializable {
/*面额**/
@io.swagger.annotations.ApiModelProperty(value="面额",name="price")
private Integer price;
/*单位**/
@io.swagger.annotations.ApiModelProperty(value="单位0:钱分,1:小时",name="unit")
private Integer unit;

/*券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)**/
@io.swagger.annotations.ApiModelProperty(value="券类型(1.满减券,2.代金券,3.团购券,4.礼品券,5.停车券)",name="type")
@@ -109,6 +112,14 @@ public class WxCouponChannelVo extends WxCouponChannel implements Serializable {
return price;
}

public Integer getUnit() {
return unit;
}

public void setUnit(Integer unit) {
this.unit = unit;
}

public Integer getUseLimitQuantity() {
return useLimitQuantity;
}


Загрузка…
Отмена
Сохранить