• 徐俊's avatar
    xujun · b3321b23
    徐俊 authored
    b3321b23
RedisKey.java 974 Bytes
package com.yiboshi.science.utils;

/**
 * @Auther: kylin
 * @Date: 2021/9/6 10:35
 * @Description:
 */
public class RedisKey {
    //参数类型表缓存key
    public final static String ParameterTypeList = "para-type-list";
    //参数表缓存key
    public final static String ParameterList = "para-list:type_";
    //系统设置表缓存key
    public final static String SystemSetList = "systemSet-list";
    //单位表缓存key
    public final static String UnitList = "unit-list";
    //角色表缓存key
    public final static String RoleList = "role-list";
    //项目KPI绩效指标
    public final static String ProjectKPIList = "project-kpi-list";
    //学科代码列表1
    public final static String KnowledgeCodeList1 = "knowledge-code-list1";
    //学科代码列表2
    public final static String KnowledgeCodeList2 = "knowledge-code-list2";
    //专业数组代码列表
    public final static String SpecArrayList = "spec-array-list";
}