redis key

订单管理 查询接口
This commit is contained in:
wangw 2024-03-13 11:52:29 +08:00
parent 6568318806
commit a3da1826fa
3 changed files with 23 additions and 13 deletions

View File

@ -36,6 +36,7 @@
- 手动修改密码 - 手动修改密码
- token生成 地址 TokenProvider.createToken - token生成 地址 TokenProvider.createToken
- OnlineUserService.save token保存地址 - OnlineUserService.save token保存地址
- OnlineUserService 可以踢出用户
原文:[123456]() 原文:[123456]()

View File

@ -22,44 +22,45 @@ package cn.ysk.cashier.utils;
*/ */
public interface CacheKey { public interface CacheKey {
/**
* 用户
*/
String USER_ID = "user:id:";
/** /**
* 激活码 * 激活码
*/ */
String ACT_CODE = "act_code:"; String ACT_CODE = "act_code:";
/**
* 用户
*/
String USER_ID = "user::id:";
/** /**
* 数据 * 数据
*/ */
String DATA_USER = "data:user:"; String DATA_USER = "data::user:";
/** /**
* 菜单 * 菜单
*/ */
String MENU_ID = "menu:id:"; String MENU_ID = "menu::id:";
String MENU_USER = "menu:user:"; String MENU_USER = "menu::user:";
/** /**
* 角色授权 * 角色授权
*/ */
String ROLE_AUTH = "role:auth:"; String ROLE_AUTH = "role::auth:";
/** /**
* 角色信息 * 角色信息
*/ */
String ROLE_ID = "role:id:"; String ROLE_ID = "role::id:";
/** /**
* 部门 * 部门
*/ */
String DEPT_ID = "dept:id:"; String DEPT_ID = "dept::id:";
/** /**
* 岗位 * 岗位
*/ */
String JOB_ID = "job:id:"; String JOB_ID = "job::id:";
/** /**
* 数据字典 * 数据字典
*/ */
String DICT_NAME = "dict:name:"; String DICT_NAME = "dict::name:";
/** /**
* 库存 PRODUCT:shopid:skuid * 库存 PRODUCT:shopid:skuid
*/ */

View File

@ -44,6 +44,14 @@ public class TbOrderInfoQueryCriteria{
@Query @Query
private String status; private String status;
/** 精确 */
@Query
private String orderType;
/** 精确 */
@Query
private String payType;
/** 精确 */ /** 精确 */
@Query @Query
private String shopId; private String shopId;