This commit is contained in:
陈维伟 2023-11-10 11:24:28 +08:00
parent 5eea9f6cb7
commit 94151c53af

View File

@ -127,6 +127,7 @@ public class PendingMessageNewServiceImpl implements PendingMessageNewService {
.orElseThrow(() -> new ServiceException("not found message template."));
PendingMessageRecord record = convert(param, msgTemplate);
pendingMessageRecordDao.save(record);
// TODO 补偿消息推送 @luofu
return record.getIdentityCode();
}