package com.sercurityControl.proteam.newScreen.mapper; import com.sercurityControl.proteam.domain.PersonData; import com.sercurityControl.proteam.domain.TeamData; import java.util.List; import java.util.Map; /** * @author bonus * @data 2022/12/8 9:39 * @description 班组 */ public interface TeamNewMapper { /** * 班组统计 * * @return 集合 */ List> getTeamNum(); /** * 环水保 * * @return 集合 */ List> getEiaNum(); /** * 环水保 * * @param map 参数 * @return 集合 */ Integer updateEiaNum(Map map); /** * 获取班组 * * @param * @return 集合 */ List getTeamByOrg(TeamData teamOrg); /** * 获取人员 * * @param cityName 地市 * @return 集合 */ List getPersonData(PersonData cityName); }