| | |
| | | } |
| | | |
| | | @Override |
| | | public Integer updateDirs(List<DirEntity> dirEntity) { |
| | | return dirMapper.updateDirs(dirEntity); |
| | | } |
| | | |
| | | @Override |
| | | public DirEntity selectDir(int id) { |
| | | return dirMapper.selectDir(id); |
| | | return dirMapper.selectDir(id); |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectDirAll() { |
| | | return dirMapper.selectDirAll(); |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectDirRoot() { |
| | | return dirMapper.selectDirRoot(); |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectDirRecursive(String name) { |
| | | return dirMapper.selectDirRecursive(name); |
| | | } |
| | | } |