意向金提交发审核通知

This commit is contained in:
wangxiaopeng
2024-05-21 15:58:00 +08:00
parent a4e7f3c1bc
commit 2b653c180b

View File

@@ -108,6 +108,11 @@ public class LinePayServiceImpl implements LinePayService {
lineInfo.setWorkflowSubStage(WorkflowSubStageEnum.PAY_DEPOSIT.getCode());
lineInfo.setWorkflowSubStageStatus(WorkflowSubStageStatusEnum.PAY_DEPOSIT_50.getCode());
lineInfoDAO.insertOrUpdate(lineInfo);
Map<String, String> requestMap = new HashMap<>();
requestMap.put("partnerUsername",lineInfo.getUsername());
requestMap.put("payTime",DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, linePayDO.getPayTime()));
requestMap.put("lineId",String.valueOf(lineInfo.getId()));
commonService.sendMessage(Arrays.asList(lineInfo.getInvestmentManager()), MessageEnum.MESSAGE_5,requestMap);
}
return payId == null ? null : payId;
}