feat(system/sms): 短信渠道支持数据字典配置 (#159)

This commit is contained in:
Top2Hub
2025-04-21 16:11:25 +08:00
committed by GitHub
parent c9d5810f7d
commit e4828bf2a3
13 changed files with 220 additions and 21 deletions

View File

@@ -88,5 +88,22 @@ public class CaptchaProperties {
* 模板 ID
*/
private String templateId;
/**
* 供应商渠道
*
* @see top.continew.admin.system.model.resp.SmsConfigResp#supplier
*/
private String supplier;
/**
* 验证码字段模版键名
*/
private String codeKey = "code";
/**
* 失效时间字段模版键名
*/
private String timeKey = "expirationInMinutes";
}
}