admin
2023-04-12 f06a592dd1a7e995bf313ccb5efe7dff73ccfc4e
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")