TenantInfoDao.java 763 B

123456789101112131415161718192021222324252627
  1. package com.keao.edu.user.dao;
  2. import com.keao.edu.common.dal.BaseDAO;
  3. import com.keao.edu.user.dto.TenantInfoDto;
  4. import com.keao.edu.user.entity.TenantInfo;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. import java.util.Map;
  8. public interface TenantInfoDao extends BaseDAO<Integer, TenantInfo> {
  9. List<TenantInfoDto> queryTenants(Map<String, Object> params);
  10. List<TenantInfo> getTenants(@Param("ids") List<Integer> ids);
  11. int countTenants(Map<String, Object> params);
  12. /**
  13. * @describe 获取指定分部的机构信息
  14. * @author Joburgess
  15. * @date 2020.07.13
  16. * @param organId:
  17. * @return com.keao.edu.user.entity.TenantInfo
  18. */
  19. TenantInfo getWithOrgan(@Param("organId") Integer organId);
  20. }