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

68 lines
1.1 KiB
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";
/**
* 复制单据
*/
String COPY_ORDER = "copy_order";
/**
* 下载患者信息
*/
String DL_SICKER = "dl_sicker";
/**
* 下载患者处方
*/
String DL_SICKER_PRECRIBE = "dl_sicker_precribe";
/**
* 盘点提交单据
*/
String INV_COUNT_SUBMIT_ORDER = "inv_count_submit_order";
/**
* 删除工位单据类型
*/
String RM_WORK_BUS_TYPE = "rmWorkBusType";
}