管道基础大数据平台系统开发-【后端】-Server
xing
2023-02-21 e1e254787f8b9327a4ed47a7559d6b56db13c80b
src/main/java/com/lf/server/mapper/data/DirMapper.java
@@ -86,10 +86,24 @@
    public List<DirEntity> selectDirRoot();
    /**
     * 递归查询
     * 查询项目
     *
     * @param name
     * @return
     */
    public List<DirEntity> selectDirRecursive(String name);
    public List<DirEntity> selectProject();
    /**
     * 递归查询
     *
     * @param id
     * @return
     */
    public List<DirEntity> selectRecursiveById(Integer id);
    /**
     * 查询项目目录树
     *
     * @return
     */
    public List<DirEntity> selectDirsForPrj();
}