自定义参数设置方式

This commit is contained in:
egzosn
2020-03-10 22:04:12 +08:00
parent 563e4d1080
commit f77c1edd96
12 changed files with 132 additions and 49 deletions

View File

@@ -226,7 +226,7 @@ public class AliPayService extends BasePayService<AliPayConfigStorage> {
bizContent.put("timeout_express", DateUtils.minutesRemaining(order.getExpirationTime()) + "m");
}
orderInfo.put(BIZ_CONTENT, JSON.toJSONString(bizContent));
orderInfo.putAll(order.getAttr());
orderInfo.putAll(order.getAttrs());
return preOrderHandler(orderInfo, order);
}