| | |
| | | } |
| | | |
| | | @Override |
| | | public DirEntity selectByCode(String code) { |
| | | return dirMapper.selectByCode(code); |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectDirAll() { |
| | | return dirMapper.selectDirAll(); |
| | | } |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectDirRecursive(String name) { |
| | | return dirMapper.selectDirRecursive(name); |
| | | public List<DirEntity> selectRecursiveById(Integer id) { |
| | | return dirMapper.selectRecursiveById(id); |
| | | } |
| | | |
| | | @Override |
| | | public List<DirEntity> selectRecursiveById(Integer id) { |
| | | return dirMapper.selectRecursiveById(id); |
| | | public List<DirEntity> selectDirsForPrj() { |
| | | return dirMapper.selectDirsForPrj(); |
| | | } |
| | | } |