修改错误命名属性

This commit is contained in:
RuoYi
2022-06-24 23:09:44 +08:00
parent 6e476e40af
commit acf8ea428f
2 changed files with 5 additions and 5 deletions

View File

@@ -47,7 +47,7 @@ public class CacheController extends BaseController
public String getCacheKeys(String fragment, String cacheName, ModelMap mmap)
{
mmap.put("cacheName", cacheName);
mmap.put("cacheKyes", cacheService.getCacheKeys(cacheName));
mmap.put("cacheKeys", cacheService.getCacheKeys(cacheName));
return prefix + "/cache::" + fragment;
}