Browse Source

🐛 #1171 修复创建会员卡接口中错误的参数

master
Binary Wang 5 years ago
parent
commit
0754c7a01c
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/card/BonusRule.java

+ 3
- 2
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/card/BonusRule.java View File

@@ -8,6 +8,7 @@ import me.chanjar.weixin.mp.util.json.WxMpGsonBuilder;


/** /**
* 积分规则. * 积分规则.
*
* @author yuanqixun * @author yuanqixun
* date:2018-08-25 00:33 * date:2018-08-25 00:33
*/ */
@@ -54,8 +55,8 @@ public class BonusRule implements Serializable {
/** /**
* 抵扣条件,满xx元(这里以分为单位)可用. * 抵扣条件,满xx元(这里以分为单位)可用.
*/ */
@SerializedName("least_moneyto_use_bonus")
private Integer leastMoneytoUseBonus;
@SerializedName("least_money_to_use_bonus")
private Integer leastMoneyToUseBonus;


/** /**
* 抵扣条件,单笔最多使用xx积分. * 抵扣条件,单笔最多使用xx积分.


Loading…
Cancel
Save