管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-03-21 ce663f476e7134bb4f9e34d5491fc37be53cc09f
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
@@ -88,9 +96,10 @@
    /**
     * 查询项目
     *
     * @param name
     * @return
     */
    public List<DirEntity> selectProject();
    public List<DirEntity> selectProject(String name);
    /**
     * 递归查询
@@ -106,4 +115,28 @@
     * @return
     */
    public List<DirEntity> selectDirsForPrj();
    /**
     * 根据父ID查找最大排序号
     *
     * @return
     */
    public Integer selectMaxOrderNum();
    /**
     * 根据名称查找目录
     *
     * @param name
     * @param pid
     * @return
     */
    public DirEntity selectDirByName(String name, Integer pid);
    /**
     * 根据编码查询名称
     *
     * @param code
     * @return
     */
    public String selectNameByCode(String code);
}