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.
udi-wms-java/src/main/java/com/glxp/api/constant/RedissonCacheKey.java

42 lines
665 B
Java

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";
}