diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxCouponChannel.java b/mallinkService/src/main/java/com/iformall/domain/po/WxCouponChannel.java index 30dfcf5d7..7435b8ce1 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxCouponChannel.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxCouponChannel.java @@ -72,14 +72,6 @@ public class WxCouponChannel extends BaseEntity { @io.swagger.annotations.ApiModelProperty(value="子频道ID",name="subTargetId") private Long subTargetId; - @Transient - @io.swagger.annotations.ApiModelProperty(value = "小程序路径", name = "weaAppPath") - private String weaAppPath; - - @Transient - @io.swagger.annotations.ApiModelProperty(value = "小程序二维码scene", name = "weaAppScene") - private String weaAppScene; - @Transient @io.swagger.annotations.ApiModelProperty(value="积分售价(适用于类型10,11)",name="creditPrice") private Integer creditPrice; @@ -99,7 +91,7 @@ public class WxCouponChannel extends BaseEntity { @Transient private Long merchantId; - public String getWeaAppPath() { + public String getWeappPath() { if(type == null) return "pages/index/index"; if(!type.equals(EnumCouponType.COUPON_GROUP.getCode())) { @@ -109,7 +101,7 @@ public class WxCouponChannel extends BaseEntity { } } - public String getWeaAppScene() { + public String getWeappScene() { if(type == null) return ""; if(!type.equals(EnumCouponType.COUPON_GROUP.getCode())) { diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java b/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java index 3df6bcf75..7f2cbd977 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java @@ -178,13 +178,13 @@ public class WxMerchant extends BaseEntity { return super.getSortColumns(); } - public String getWeaAppPath() { + public String getWeappPath() { if(id == null) return "pages/index/index"; return "pages/index/index?type=md&id=" + id; } - public String getWeaAppScene() { + public String getWeappScene() { if(id == null) return ""; return "t:md:" + id;