|
|
|
@@ -118,6 +118,11 @@ public class WxCouponChannel implements Serializable { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "小程序二维码scene", name = "weaAppScene") |
|
|
|
private String weaAppScene; |
|
|
|
|
|
|
|
/**积分售价(适用于类型10,11)**/ |
|
|
|
@Transient |
|
|
|
@io.swagger.annotations.ApiModelProperty(value="积分售价(适用于类型10,11)",name="creditPrice") |
|
|
|
private Integer creditPrice; |
|
|
|
|
|
|
|
|
|
|
|
public String getTenantId() { |
|
|
|
return tenantId; |
|
|
|
@@ -227,7 +232,15 @@ public class WxCouponChannel implements Serializable { |
|
|
|
this.supportTransfer = supportTransfer; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeaAppPath() { |
|
|
|
public Integer getCreditPrice() { |
|
|
|
return creditPrice; |
|
|
|
} |
|
|
|
|
|
|
|
public void setCreditPrice(Integer creditPrice) { |
|
|
|
this.creditPrice = creditPrice; |
|
|
|
} |
|
|
|
|
|
|
|
public String getWeaAppPath() { |
|
|
|
if(type == null) |
|
|
|
return "pages/index/index"; |
|
|
|
if(!type.equals(EnumCouponType.COUPON_GROUP.getCode())) { |
|
|
|
|