管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-21 ac15c2882303c3b7a3043e9c7fd2829ee076d872
src/main/java/com/lf/server/mapper/data/DirMapper.java
@@ -72,6 +72,14 @@
    public DirEntity selectDir(int id);
    /**
     * 根据Code查询目录
     *
     * @param code
     * @return
     */
    public DirEntity selectByCode(String code);
    /**
     * 查询多条数据
     *
     * @return
@@ -95,16 +103,15 @@
    /**
     * 递归查询
     *
     * @param name
     * @return
     */
    public List<DirEntity> selectDirRecursive(String name);
    /**
     * 递归查询
     *
     * @param id
     * @return
     */
    public List<DirEntity> selectRecursiveById(Integer id);
    /**
     * 查询项目目录树
     *
     * @return
     */
    public List<DirEntity> selectDirsForPrj();
}