REQ-4015: 调整信息

This commit is contained in:
yanglin 2025-04-14 16:07:18 +08:00
parent 5cbe9d5e0f
commit 1c34537829

View File

@ -219,12 +219,12 @@ public class PrivateMessageController {
log.info("saving template. innerTemplateNo={}, channelTemplateNo={}", request.getInnerTemplateNo(),
request.getChannelTemplateCode());
platService.createTemplate(request);
result.put(request.getChannelTemplateCode(), "创建");
result.put(request.getChannelTemplateCode(), "创建成功");
}
else {
log.info("ignore saving template, it's present. innerTemplateNo={}, channelTemplateNo={}",
request.getInnerTemplateNo(), request.getChannelTemplateCode());
result.put(request.getChannelTemplateCode(), "已存在");
result.put(request.getChannelTemplateCode(), "已存在, 跳过");
}
}
return result;