| 123456789101112131415161718192021222324252627282930313233343536 |
- 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<SysDeptInternalAgent> {
- /**
- * @version
- * @author: hxl
- * @Date: 2024/6/27 11:20
- * @Description: 查询所有的机构
- */
- List<SysDeptInternalAgent> queryDeptList(@Param(value = "parentIds") String parentIds,@Param(value = "comtype") String comtype);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/9/10 9:11
- * @Description: 通过部门id和类型查询组的数据
- */
- List<GroupDto> queryGroupListByDeptId(@Param(value = "deptId") String deptId, @Param(value = "comtype") String comtype);
- }
|