Skip to content

Commit

Permalink
#868 修复微信支付代金券查询接口响应中错误的字段coupon_mininum为coupon_minimum(文档里有误,与实际不一致)
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Dec 7, 2018
1 parent c590e54 commit 1403459
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ public class WxPayCouponInfoQueryResult extends BaseWxPayResult {
/**
* <pre>
* 字段名:代金券使用门槛.
* 变量名:coupon_mininum
* 变量名:coupon_minimum 微信文档有误
* 是否必填:是
* 示例值:10
* 类型:Unsinged int
* 说明:代金券使用最低限额,单位是分
* </pre>
*/
@XStreamAlias("coupon_mininum")
private Integer couponMininum;
@XStreamAlias("coupon_minimum")
private Integer couponMinimum;

/**
* <pre>
Expand Down

0 comments on commit 1403459

Please sign in to comment.