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.

42 lines
903 B

/*
* @desc:缓存键
*
*
* @Date: 2022/3/9 12:06
*/
package consts
const (
// CacheSysAuthMenu 缓存菜单key
CacheSysAuthMenu = "sysAuthMenu"
// CacheSysDept 缓存部门key
CacheSysDept = "sysDept"
// CacheSysRole 角色缓存key
CacheSysRole = "sysRole"
// CacheSysWebSet 站点配置缓存key
CacheSysWebSet = "sysWebSet"
// CacheSysCmsMenu cms缓存key
CacheSysCmsMenu = "sysCmsMenu"
// CacheSysAuthTag 权限缓存TAG标签
CacheSysAuthTag = "sysAuthTag"
// CacheSysModelTag 模型缓存标签
CacheSysModelTag = "sysModelTag"
// CacheSysCmsTag cms缓存标签
CacheSysCmsTag = "sysCmsTag"
)
const (
CacheModelMem = "memory"
CacheModelRedis = "redis"
// CacheSysDict 字典缓存菜单KEY
CacheSysDict = "sysDict"
// CacheSysDictTag 字典缓存标签
CacheSysDictTag = "sysDictTag"
// CacheSysConfigTag 系统参数配置
CacheSysConfigTag = "sysConfigTag"
)