aijinhui
2024-02-23 0abccf5e570dce53a802bca4ce25118dd900692c
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java
@@ -1,6 +1,8 @@
package com.ruoyi.system.mapper;
import java.util.List;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import com.ruoyi.common.core.domain.entity.SysDept;
@@ -9,7 +11,7 @@
 * 
 * @author ruoyi
 */
public interface SysDeptMapper
public interface SysDeptMapper extends BaseMapper<SysDept>
{
    /**
     * 查询部门管理数据
@@ -123,5 +125,5 @@
     */
    public int deleteDeptById(Long deptId);
    public List<Long> getChildrenDeptIdList(@Param("deptIdList")List<Long> deptIdList);
}