| | |
| | | package com.gkhy.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.system.domain.ProjectManagement; |
| | | import com.gkhy.system.domain.vo.request.ProjectExpertStateReq; |
| | | import com.gkhy.system.domain.vo.response.ProjectExpertManagementInfoRes; |
| | | import com.gkhy.system.domain.vo.response.ProjectExpertStateResp; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 项目管理Mapper接口 |
| | |
| | | * @author expert |
| | | * @date 2024-11-14 |
| | | */ |
| | | public interface ProjectManagementMapper |
| | | public interface ProjectManagementMapper extends BaseMapper<ProjectManagement> |
| | | { |
| | | /** |
| | | * 查询项目管理 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteProjectManagementByIds(Long[] ids); |
| | | |
| | | /** |
| | | * 详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | ProjectExpertManagementInfoRes projectExpertCheckInfo(Long id); |
| | | |
| | | /** |
| | | * 项目考评累表 |
| | | * @param req |
| | | * @return |
| | | */ |
| | | List<ProjectExpertStateResp> getProjectExpertSate(ProjectExpertStateReq req); |
| | | |
| | | /** |
| | | * |
| | | * @param deptId |
| | | * @return |
| | | */ |
| | | List<Integer> getDataNum (Long deptId); |
| | | } |