| | |
| | | |
| | | import com.gkhy.assess.system.domain.AssPlanPerson; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.assess.system.domain.vo.PersonRecognitionVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | List<AssPlanPerson> getPlanPersonsByIds(List<Long> ids); |
| | | |
| | | /** |
| | | * 根据项目id获取项目归档总人数和已签字人数 |
| | | * @param projectIds |
| | | * @return |
| | | */ |
| | | List<PersonRecognitionVO> getPersonAndRecognitionCount(List<Long> projectIds); |
| | | |
| | | /** |
| | | * 查找项目组长人数 |
| | | * @param projectId |
| | | * @return |
| | | */ |
| | | int getMajorPlanPersonCountByProject(Long projectId); |
| | | } |