yjwang 1 день назад
Родитель
Сommit
e10515b266

+ 1 - 1
fs-user-app/src/main/java/com/fs/app/controller/CommonController.java

@@ -306,7 +306,7 @@ public class CommonController {
 
 	@ApiOperation("获取数据字典")
 	@GetMapping("/getDictByKey")
-    @Cacheable(value="dicts", key="#key")
+    @Cacheable(value="sys_dicts", key="#key")
 	public R getDictByKey(@RequestParam(value = "key", required = false) String key){
 		List<DictVO> dicts=dictDataService.selectDictDataListByType(key);
 		return R.ok().put("data",dicts);