| 12345678910111213141516171819202122232425 |
- package com.poyee.common.constant;
- public class SystemConstant {
- public static int JWT_ERRCODE_EXPIRE = 401;
- public static int JWT_ERRCODE_FAIL = 400;
- public static String JWT_SECERT = "4570b0";
- public static String AES_KEY = "4570b0";
- //30分钟过期时间
- public static long millis = 30*60*1000;
- //退款手机验证权限码
- public static String auth_phone_code_refund = "phone_code_refund";
- //手机验证码-商家禁用 权限码
- public static String auth_phone_code_merchant_1 = "phone_code_merchant_1";
- //白名单
- public static String auth_white = "white";
- //黑名单
- public static String auth_black = "black";
- //超级权限
- public static String auth_super = "super";
- }
|