You cannot 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
665 B
Java
42 lines
665 B
Java
2 years ago
|
package com.glxp.api.constant;
|
||
|
|
||
|
//redisson缓存key
|
||
|
public interface RedissonCacheKey {
|
||
|
|
||
|
/**
|
||
|
* 注册审核
|
||
|
*/
|
||
|
String REGISTER_AUDIT = "register_audit";
|
||
|
|
||
|
/**
|
||
|
* web添加单据
|
||
|
*/
|
||
|
String WEB_ADD_ORDER = "web_add_order";
|
||
|
|
||
|
/**
|
||
|
* 升级
|
||
|
*/
|
||
|
String UPGRADE = "upgrade";
|
||
|
|
||
|
/**
|
||
|
* 提交单据
|
||
|
*/
|
||
|
String SUBMIT_ORDER = "submit_order";
|
||
|
|
||
|
/**
|
||
|
* app提交单据
|
||
|
*/
|
||
|
String APP_SUBMIT_ORDER = "app_submit_order";
|
||
|
|
||
|
/**
|
||
|
* 删除临时码表
|
||
|
*/
|
||
|
String DELETE_CODE_TEMP = "delete_code_temp";
|
||
|
|
||
|
|
||
|
/**
|
||
|
* web添加单据
|
||
|
*/
|
||
|
String WEB_ADD_CODE = "web_add_code";
|
||
|
}
|