蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
417 B

  1. package md
  2. // 缓存key统一管理, %s格式化为masterId
  3. const (
  4. JwtTokenKey = "%s:egg_admin_jwt_token:%s" // jwt, 占位符:ip, admin:id
  5. JwtTokenCacheTime = 3600 * 6
  6. AppCfgCacheKey = "egg_admin_cfg_cache:%s" // 占位符: key的第一个字母
  7. CfgCacheTime = 86400
  8. AdminRolePermissionKey = "egg_admin_role_permission:%s" // 占位符:admin:id
  9. AdminRolePermissionCacheTime = 3600 * 24 * 0.5
  10. )