| | |
| | | /** |
| | | * 微信获取授权openId地址 |
| | | */ |
| | | public static final String WX_OPENID_ADDRESS = "https://api.weixin.qq.com/sns/jscode2sess"; |
| | | public static final String WX_OPENID_ADDRESS = "https://api.weixin.qq.com/sns/jscode2session"; |
| | | |
| | | /** |
| | | * UTF-8 字符集 |
| | |
| | | public static final String REJECT_STR = "已驳回"; |
| | | |
| | | /** |
| | | * 家电以旧换新 |
| | | */ |
| | | public static final String TRADE_IN = "家电以旧换新"; |
| | | |
| | | /** |
| | | * 预约上门回收 |
| | | */ |
| | | public static final String RECOVERY = "预约上门回收"; |
| | | |
| | | /** |
| | | * 数字60 |
| | | */ |
| | | public static final Integer SIXTY = 60; |
| | |
| | | public static final Integer THREE = 3; |
| | | |
| | | /** |
| | | * 数字4 |
| | | */ |
| | | public static final Integer FOUR = 4; |
| | | |
| | | /** |
| | | * 数字5 |
| | | */ |
| | | public static final Integer FIVE = 5; |
| | |
| | | * 数字6 |
| | | */ |
| | | public static final Integer SIX = 6; |
| | | |
| | | /** |
| | | * 数字10 |
| | | */ |
| | | public static final Integer TEN = 10; |
| | | |
| | | /** |
| | | * 数字18 |
| | |
| | | public static final String DEFAULT_PASSWORD = "123456"; |
| | | |
| | | /** |
| | | * 三端默认验证码 |
| | | */ |
| | | public static final String DEFAULT_PHONE_CODE = "123456"; |
| | | |
| | | /** |
| | | * 手机号码正则 |
| | | */ |
| | | public static final String PHONE = ("^((13[0-9])|(14[0,1,4-9])|(15[0-3,5-9])|(16[2,5,6,7])|(17[0-8])|(18[0-9])|(19[0-3,5-9]))\\d{8}$"); |
| | | public static final String PHONE = "^1[34578]\\d{9}$"; |
| | | |
| | | } |