分销提现失败原因记录

This commit is contained in:
张松
2025-10-29 18:23:42 +08:00
parent 5e99bd272c
commit ac67323f0d
4 changed files with 7 additions and 3 deletions

View File

@@ -80,8 +80,9 @@ public class NotifyController {
log.info("参数信息: {}", jsonObject.toJSONString());
String outBillNo = jsonObject.getString("out_bill_no");
String state = jsonObject.getString("state");
String failReason = jsonObject.getString("fail_reason");
try {
distributionUserService.withdrawNotify(outBillNo, state);
distributionUserService.withdrawNotify(outBillNo, state, failReason);
}catch (Exception e) {
log.warn("转账回调失败", e);
}