forked from lilishop/lilishop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0fc179c
commit 6d7e9e7
Showing
5 changed files
with
68 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
framework/src/main/java/cn/lili/config/properties/SmsTemplateSetting.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package cn.lili.config.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 SmsTemplateSetting { | ||
//登录 | ||
private String LOGIN = "SMS_205755300"; | ||
//注册 | ||
private String REGISTER = "SMS_205755298"; | ||
//找回密码 | ||
private String FIND_USER = "SMS_205755301"; | ||
//设置密码 | ||
private String UPDATE_PASSWORD = "SMS_205755297"; | ||
//设置支付密码 | ||
private String WALLET_PASSWORD = "SMS_205755297"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters