admin
2021-09-03 b41a6efe17ba61d150c5a9b7309651cebae54e0d
src/main/java/com/yeshi/buwan/service/imp/SpecialService.java
@@ -55,8 +55,8 @@
                new String[]{detailSystemId});
    }
    public List<Special> getSpecialList() {
        return specialDao.list("from Special");
    public List<Special> getSpecialListBySystem(String systemId) {
        return specialDao.list("from Special s where s.system.id=?",systemId);
    }
    @Cacheable(value = "classCache", key = "'getSpecialCount'+'-'+#detailSystemId")