Skip to content

Commit 67128b0

Browse files
Gawegorbinarywang
authored andcommitted
🐛 #1241 修正下载对账单接口中错误代码“NO Bill Exist”字符串与实际不一致问题
1 parent 8fb0573 commit 67128b0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

weixin-java-pay/src/main/java/com/github/binarywang/wxpay/constant/WxPayErrorCode.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,9 +459,10 @@ public static class DownloadBill {
459459
* 描述:账单不存在.
460460
* 原因:当前商户号没有已成交的订单,不生成对账单
461461
* 解决方案:请检查当前商户号在指定日期内是否有成功的交易。
462+
* 错误:微信官方文档这个错误的字符串显示是'NO Bill Exist'('o'是大写),实际返回是'No Bill Exist'('o'是小写)
462463
* </pre>
463464
*/
464-
public static final String NO_Bill_Exist = "NO Bill Exist";
465+
public static final String NO_Bill_Exist = "No Bill Exist";
465466

466467
/**
467468
* <pre>

0 commit comments

Comments
 (0)