| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package com.ydtech.modules.admin.dao;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.ydtech.modules.admin.model.SysAgencyLeader;
- import com.ydtech.modules.admin.model.dto.AgencyUserInsAreaDto;
- import com.ydtech.modules.admin.model.dto.DeptBalanceDto;
- import com.ydtech.modules.admin.model.dto.SysAgencyLeaderListDto;
- import com.ydtech.modules.admin.model.dto.SysAgencyLeaderPageDto;
- import com.ydtech.modules.admin.model.vo.AgencyUserInsAreaVo;
- import com.ydtech.modules.admin.model.vo.DeptBalanceVo;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import java.math.BigDecimal;
- import java.util.HashMap;
- import java.util.List;
- /**
- * 配置机构负责人(AgencyLeader)表数据库访问层
- *
- * @author makejava
- * @since 2024-07-22 14:08:34
- */
- @Mapper
- public interface SysAgencyLeaderMapper extends BaseMapper<SysAgencyLeader> {
- List<SysAgencyLeader> getByUserIdList( @Param("userIds") List<String> collect);
- /**
- * @version
- * @author: hxl
- * @Date: 2024/8/31 12:42
- * @Description: 分页查询机构负责人
- */
- IPage<DeptBalanceDto> queryPage(Page page, @Param("vo") DeptBalanceVo deptBalanceVo);
- HashMap<String, BigDecimal> getBigDecimalNum(@Param("deptId") String deptId, @Param("createTime") String createTime,@Param("beginTime") String beginTime,@Param("endTime") String endTime);
- HashMap<String, Object> getAreaCompanyByUserId(@Param("orderNoList") List<String> orderNoList);
- List<AgencyUserInsAreaVo> queryUserInsAreaExcel(@Param("dto")AgencyUserInsAreaDto agencyUserInsAreaDto);
- /**
- * 正常员工
- * @param page
- * @param sysAgencyLeaderPageDto
- * @return
- */
- IPage<SysAgencyLeader> queryLeaderPage(Page page,@Param("dto") SysAgencyLeaderPageDto sysAgencyLeaderPageDto);
- int updateByIds(@Param("dto") SysAgencyLeaderListDto sysAgencyLeaderDto);
- }
|