src/main/java/com/lf/server/service/data/DirService.java
@@ -54,6 +54,11 @@ } @Override public DirEntity selectByCode(String code) { return dirMapper.selectByCode(code); } @Override public List<DirEntity> selectDirAll() { return dirMapper.selectDirAll(); } @@ -72,4 +77,9 @@ public List<DirEntity> selectRecursiveById(Integer id) { return dirMapper.selectRecursiveById(id); } @Override public List<DirEntity> selectDirsForPrj() { return dirMapper.selectDirsForPrj(); } }