pull/1121/head
梁宇奇 2025-08-09 14:31:35 +08:00
parent aae048ca57
commit 1dbbe9c045
2 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ public class StoreCertificateServiceImpl implements IStoreCertificateService {
// 档口用户绑定
userService.refreshRelStore(store.getUserId(), ESystemRole.SUPPLIER.getId());
// 放到redis中
redisCache.setCacheObject(CacheConstants.STORE_KEY + store.getId(), store.getId());
redisCache.setCacheObject(CacheConstants.STORE_KEY + store.getId(), store);
return store;
}

View File

@ -100,7 +100,7 @@ public class StoreServiceImpl implements IStoreService {
// 档口用户绑定
userService.refreshRelStore(store.getUserId(), ESystemRole.SUPPLIER.getId());
// 放到redis中
redisCache.setCacheObject(CacheConstants.STORE_KEY + store.getId(), store.getId());
redisCache.setCacheObject(CacheConstants.STORE_KEY + store.getId(), store);
return count;
}