SysDeptAccountMapper.java 727 B

1234567891011121314151617181920
  1. package com.ydtech.modules.admin.dao;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.ydtech.modules.admin.model.SysDeptAccount;
  5. import com.ydtech.modules.admin.model.dto.SysDeptAccountDto;
  6. import com.ydtech.modules.admin.model.vo.SysDeptAccountByUserVo;
  7. import org.apache.ibatis.annotations.Mapper;
  8. import org.apache.ibatis.annotations.Param;
  9. import java.util.List;
  10. @Mapper
  11. public interface SysDeptAccountMapper extends BaseMapper<SysDeptAccount> {
  12. Page<SysDeptAccountDto> getDept(Page page, @Param("sysDeptAccountDto") SysDeptAccountDto sysDeptAccountDto);
  13. List<SysDeptAccountByUserVo> getDeptAccountByUser(String userId);
  14. }