feat(notify): 增加景区通知模板标题和描述字段

- 在记录用户通知授权接口中将日志级别从 info 调整为 debug
- 在获取景区通知模板及用户授权余额接口中将日志级别从 info 调整为 debug
- 根据不同模板 ID 设置对应的标题和描述信息:
  - 视频生成通知  - 视频下载通知- 视频即将过期通知
  -未知模板类型兜底处理
- 在 ScenicTemplateAuthResp 类中新增 title 和 description 字段用于返回模板信息
This commit is contained in:
2025-10-20 14:58:49 +08:00
parent 70ef4eb09c
commit 9fcb472717
2 changed files with 26 additions and 2 deletions

View File

@@ -33,6 +33,16 @@ public class ScenicTemplateAuthResp {
*/
private String templateId;
/**
* 模板标题
*/
private String title;
/**
* 模板描述
*/
private String description;
/**
* 剩余授权次数
*/