| 1234567891011121314151617181920 |
- package com.ydtech.modules.admin.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.ydtech.modules.admin.model.SysDeptAccount;
- import com.ydtech.modules.admin.model.dto.SysDeptAccountDto;
- import com.ydtech.modules.admin.model.vo.SysDeptAccountByUserVo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- @Mapper
- public interface SysDeptAccountMapper extends BaseMapper<SysDeptAccount> {
- Page<SysDeptAccountDto> getDept(Page page, @Param("sysDeptAccountDto") SysDeptAccountDto sysDeptAccountDto);
- List<SysDeptAccountByUserVo> getDeptAccountByUser(String userId);
- }
|