mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 07:23:01 +08:00
#868 修复微信支付代金券查询接口响应中错误的字段coupon_mininum为coupon_minimum(文档里有误,与实际不一致)
This commit is contained in:
parent
c590e54c07
commit
140345902d
@ -74,15 +74,15 @@ public class WxPayCouponInfoQueryResult extends BaseWxPayResult {
|
|||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 字段名:代金券使用门槛.
|
* 字段名:代金券使用门槛.
|
||||||
* 变量名:coupon_mininum
|
* 变量名:coupon_minimum 微信文档有误
|
||||||
* 是否必填:是
|
* 是否必填:是
|
||||||
* 示例值:10
|
* 示例值:10
|
||||||
* 类型:Unsinged int
|
* 类型:Unsinged int
|
||||||
* 说明:代金券使用最低限额,单位是分
|
* 说明:代金券使用最低限额,单位是分
|
||||||
* </pre>
|
* </pre>
|
||||||
*/
|
*/
|
||||||
@XStreamAlias("coupon_mininum")
|
@XStreamAlias("coupon_minimum")
|
||||||
private Integer couponMininum;
|
private Integer couponMinimum;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
|
Loading…
Reference in New Issue
Block a user