From 37033f1b161becc545c0c6b9f0a7dd315ffb5aeb Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Mon, 20 Oct 2025 17:11:53 +0800 Subject: [PATCH] =?UTF-8?q?fix(notify):=E4=BC=98=E5=8C=96=E8=A7=86?= =?UTF-8?q?=E9=A2=91=E9=80=9A=E7=9F=A5=E6=8F=8F=E8=BF=B0=E6=96=87=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 简化视频生成完成通知的描述内容 - 调整未购买视频通知的表述方式 - 更新视频即将过期通知的提示语- 统一各类通知的描述风格 --- .../mobile/notify/UserNotificationAuthController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/ycwl/basic/controller/mobile/notify/UserNotificationAuthController.java b/src/main/java/com/ycwl/basic/controller/mobile/notify/UserNotificationAuthController.java index 01796844..163bdbdc 100644 --- a/src/main/java/com/ycwl/basic/controller/mobile/notify/UserNotificationAuthController.java +++ b/src/main/java/com/ycwl/basic/controller/mobile/notify/UserNotificationAuthController.java @@ -133,13 +133,13 @@ public class UserNotificationAuthController { if (templateId.equals(scenicRepository.getVideoGeneratedTemplateId(scenicId))) { templateAuthInfo.setTitle("视频生成通知"); - templateAuthInfo.setDescription("当视频生成完成时,我们将通过此方式提醒您"); + templateAuthInfo.setDescription("当视频生成完成时,我们将提醒您"); } else if (templateId.equals(scenicRepository.getVideoDownloadTemplateId(scenicId))) { templateAuthInfo.setTitle("视频下载通知"); - templateAuthInfo.setDescription("当您的视频未购买时,我们将通过此方式提醒您"); + templateAuthInfo.setDescription("当您的视频未购买时,我们将提醒您"); } else if (templateId.equals(scenicRepository.getVideoPreExpireTemplateId(scenicId))) { templateAuthInfo.setTitle("视频即将过期通知"); - templateAuthInfo.setDescription("当您的视频即将过期时,我们将通过此方式提醒您,请及时下载"); + templateAuthInfo.setDescription("当您的视频即将过期时,我们将提醒您及时下载"); } else { templateAuthInfo.setTitle("未知模板类型"); templateAuthInfo.setDescription("未知的模板类型");