SystemConstant.java 752 B

12345678910111213141516171819202122232425
  1. package com.poyee.common.constant;
  2. public class SystemConstant {
  3. public static int JWT_ERRCODE_EXPIRE = 401;
  4. public static int JWT_ERRCODE_FAIL = 400;
  5. public static String JWT_SECERT = "4570b0";
  6. public static String AES_KEY = "4570b0";
  7. //30分钟过期时间
  8. public static long millis = 30*60*1000;
  9. //退款手机验证权限码
  10. public static String auth_phone_code_refund = "phone_code_refund";
  11. //手机验证码-商家禁用 权限码
  12. public static String auth_phone_code_merchant_1 = "phone_code_merchant_1";
  13. //白名单
  14. public static String auth_white = "white";
  15. //黑名单
  16. public static String auth_black = "black";
  17. //超级权限
  18. public static String auth_super = "super";
  19. }