| 12345678910111213141516171819 |
- package com.izouma.nineth.config;
- public interface Constants {
- public interface Regex {
- String PHONE = "^1[3-9]\\d{9}$";
- String USERNAME = "^[_.@A-Za-z0-9-]*$";
- String CHINESE = "^[\\u4e00-\\u9fa5]+$";
- String ID_NO = "^[1-9]\\d{7}((0\\d)|(1[0-2]))(([0-2]\\d)|3[0-1])\\d{3}$|^[1-9]\\d{5}[1-9]\\d{3}((0\\d)|(1[0-2]))(([0-2]\\d)|3[0-1])\\d{3}[0-9xX]$";
- }
- String DEFAULT_AVATAR = "https://9space-2021.oss-cn-shenzhen.aliyuncs.com/image/2021-11-26-18-49-04fkFHRAhM.jpg";
- String bizId = "a00e36c5";
- String kmsKey = "ydtg$@WZ9NH&EB2e";
- String SMS_TOKEN_SECRET = "rjbcsj39s9mg9r";
- }
|