[AppleScript] 纯文本查看 复制代码
@Autowired
private RedisTemplate redisTemplate;
/**
* 查询品牌和规格列表
* @param category 分类名称
* @return
*/
private Map searchBrandAndSpecList(String category){
Map map=new HashMap();
Long typeId = (Long) redisTemplate.boundHashOps("itemCat").get(category);//
获取模板 ID
if(typeId!=null){
//根据模板 ID 查询品牌列表
List brandList = (List)
redisTemplate.boundHashOps("brandList").get(typeId);
map.put("brandList", brandList);//返回值添加品牌列表
//根据模板 ID 查询规格列表
List specList = (List)
redisTemplate.boundHashOps("specList").get(typeId);
map.put("specList", specList);
}
return map;
}