22 lines
398 B
Java
22 lines
398 B
Java
|
|
package com.xjs.consts;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author xiejs
|
||
|
|
* @desc redis key常量
|
||
|
|
* @create 2021-12-30
|
||
|
|
*/
|
||
|
|
public class RedisConst {
|
||
|
|
|
||
|
|
//----------------------key------------------------
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 翻译字典常量
|
||
|
|
*/
|
||
|
|
public static final String TRAN_DICT= "tranDict";
|
||
|
|
|
||
|
|
|
||
|
|
//-------------------有效时间-----------------------
|
||
|
|
public static final Integer TRAN_DICT_EXPIRE = 7;
|
||
|
|
|
||
|
|
}
|