From e8ed1a91c77ab62a924f12acd55777f227bacd7e Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期五, 21 十一月 2025 17:15:17 +0800
Subject: [PATCH] 工位组删除后,其下工位移动到默认组
---
smart-man-boot/src/main/java/com/qianwen/smartman/common/cache/cps/EmployeeCache.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/smart-man-boot/src/main/java/com/qianwen/smartman/common/cache/cps/EmployeeCache.java b/smart-man-boot/src/main/java/com/qianwen/smartman/common/cache/cps/EmployeeCache.java
index 988cc3d..52dce7b 100644
--- a/smart-man-boot/src/main/java/com/qianwen/smartman/common/cache/cps/EmployeeCache.java
+++ b/smart-man-boot/src/main/java/com/qianwen/smartman/common/cache/cps/EmployeeCache.java
@@ -9,10 +9,10 @@
import com.qianwen.core.tool.utils.Func;
import com.qianwen.core.tool.utils.SpringUtil;
import com.qianwen.core.tool.utils.StringUtil;
-import com.qianwen.smartman.modules.cps.convert.EmployeeConvert;
-import com.qianwen.smartman.modules.cps.dto.EmployeeDTO;
-import com.qianwen.smartman.modules.cps.entity.Employee;
-import com.qianwen.smartman.modules.cps.service.IEmployeeService;
+import com.qianwen.smartman.modules.smis.convert.EmployeeConvert;
+import com.qianwen.smartman.modules.smis.dto.EmployeeDTO;
+import com.qianwen.smartman.modules.smis.entity.Employee;
+import com.qianwen.smartman.modules.smis.service.IEmployeeService;
public class EmployeeCache {
private static final BladeRedis BLADE_REDIS = (BladeRedis) SpringUtil.getBean(BladeRedis.class);
@@ -53,7 +53,7 @@
public static void clearPerfCache(List<Long> workstationIds) {
List<String> keys = Lists.newArrayList();
workstationIds.forEach(wId -> {
- String redisKey = StringUtil.format(ExtCacheConstant.POSTING_WORKSTATION.concat("::").concat(WORK), new Object[]{wId});
+ String redisKey = StringUtil.format(ExtCacheConstant.COLLECT_WORKSTATION.concat("::").concat(WORK), new Object[]{wId});
keys.add(redisKey);
});
BLADE_REDIS.del(keys);
--
Gitblit v1.9.3