:new:【微信支付】增加查询结算账户、查询分账结果、查询分账回退结果和申请分账账单等V3接口

This commit is contained in:
NotePlus
2022-12-25 14:38:26 +00:00
committed by binarywang
parent 87c33ac776
commit 0d1320a48f
7 changed files with 220 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ public class WxPayOrderNotifyResultConverter extends AbstractReflectionConverter
super.marshal(original, writer, context);
WxPayOrderNotifyResult obj = (WxPayOrderNotifyResult) original;
List<WxPayOrderNotifyCoupon> list = obj.getCouponList();
if (list == null || list.size() == 0) {
if (list == null || list.isEmpty()) {
return;
}
for (int i = 0; i < list.size(); i++) {