zhanghua
2025-06-11 2ca169c85f61256fb5185c078dba1bfef2be5066
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package cn.lili.common.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * 短信模版设置
 *
 * @author Chopper
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "lili.sms")
public class SmsTemplateProperties {
    /**
     * 登录
     */
    private String lOGIN = "SMS_185821482";
    /**
     * 注册
     */
    private String REGISTER = "SMS_185821482";
    /**
     * 找回密码
     */
    private String FIND_USER = "SMS_185821482";
    /**
     * 设置密码
     */
    private String UPDATE_PASSWORD = "SMS_185821482";
    /**
     * 设置支付密码
     */
    private String WALLET_PASSWORD = "SMS_185821482";
}