|
@@ -6,6 +6,7 @@ import com.sckw.system.api.model.dto.res.SysDictResDto;
|
|
|
import com.sckw.system.api.model.dto.res.UserCacheResDto;
|
|
import com.sckw.system.api.model.dto.res.UserCacheResDto;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
+import java.util.Map;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* @desc: 基础信息远程接口
|
|
* @desc: 基础信息远程接口
|
|
@@ -42,7 +43,7 @@ public interface RemoteSystemService {
|
|
|
List<SysDictGroupResDto> queryDictGroupByType(String type);
|
|
List<SysDictGroupResDto> queryDictGroupByType(String type);
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * @param type 字典类型,value key
|
|
|
|
|
|
|
+ * @param type 字典类型,value key
|
|
|
* @return SysDictGroupResDto
|
|
* @return SysDictGroupResDto
|
|
|
* @desc: 根据字典类型和key查字典组
|
|
* @desc: 根据字典类型和key查字典组
|
|
|
* @author: czh
|
|
* @author: czh
|
|
@@ -68,6 +69,15 @@ public interface RemoteSystemService {
|
|
|
*/
|
|
*/
|
|
|
List<EntCacheResDto> queryEntCacheByIds(List<Long> entIds);
|
|
List<EntCacheResDto> queryEntCacheByIds(List<Long> entIds);
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @desc: 从缓存批量查企业信息
|
|
|
|
|
+ * @author: yzc
|
|
|
|
|
+ * @date: 2023-07-10 8:59
|
|
|
|
|
+ * @Param entIds
|
|
|
|
|
+ * @return: Map
|
|
|
|
|
+ */
|
|
|
|
|
+ Map<Long, List<EntCacheResDto>> queryEntCacheMapByIds(List<Long> entIds);
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* @param entName 企业名
|
|
* @param entName 企业名
|
|
|
* @return EntCacheResDto
|
|
* @return EntCacheResDto
|
|
@@ -94,4 +104,13 @@ public interface RemoteSystemService {
|
|
|
* @return: java.util.List<com.sckw.system.api.model.dto.res.UserCacheResDto>
|
|
* @return: java.util.List<com.sckw.system.api.model.dto.res.UserCacheResDto>
|
|
|
*/
|
|
*/
|
|
|
List<UserCacheResDto> queryUserCacheByIds(List<Long> userIds);
|
|
List<UserCacheResDto> queryUserCacheByIds(List<Long> userIds);
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * @desc: 从缓存查用户信息
|
|
|
|
|
+ * @author: yzc
|
|
|
|
|
+ * @date: 2023-07-10 17:59
|
|
|
|
|
+ * @Param userIds: 用户id
|
|
|
|
|
+ * @return: Map
|
|
|
|
|
+ */
|
|
|
|
|
+ Map<Long, List<UserCacheResDto>> queryUserCacheMapByIds(List<Long> userIds);
|
|
|
}
|
|
}
|