package com.ydtech.modules.admin.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ydtech.modules.admin.model.dto.GroupDto; import com.ydtech.modules.admin.model.po.SysDeptInternalAgent; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @author Administrator * @description 针对表【sys_dept_internal_agent(内部机构管理)】的数据库操作Mapper * @createDate 2024-06-26 17:28:34 * @Entity generator.domain.SysDeptInternalAgent */ public interface SysDeptInternalAgentMapper extends BaseMapper { /** * @version * @author: hxl * @Date: 2024/6/27 11:20 * @Description: 查询所有的机构 */ List queryDeptList(@Param(value = "parentIds") String parentIds,@Param(value = "comtype") String comtype); /** * @version * @author: hxl * @Date: 2024/9/10 9:11 * @Description: 通过部门id和类型查询组的数据 */ List queryGroupListByDeptId(@Param(value = "deptId") String deptId, @Param(value = "comtype") String comtype); }