| | |
| | | package com.gkhy.system.mapper; |
| | | |
| | | import java.util.List; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.system.domain.ProjectExpert; |
| | | import com.gkhy.system.domain.vo.request.SysProjectExpertReq; |
| | | import com.gkhy.system.domain.vo.response.ProjectExpertEvaluationResp; |
| | | import com.gkhy.system.domain.vo.response.ProjectExpertResp; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 项目专家关联Mapper接口 |
| | |
| | | * @author expert |
| | | * @date 2024-11-14 |
| | | */ |
| | | public interface ProjectExpertMapper |
| | | public interface ProjectExpertMapper extends BaseMapper<ProjectExpert> |
| | | { |
| | | /** |
| | | * 查询项目专家关联 |
| | |
| | | */ |
| | | public int insertProjectExpert(ProjectExpert projectExpert); |
| | | |
| | | int batchInsertProjectExpert(List<ProjectExpert> list); |
| | | |
| | | /** |
| | | * 修改项目专家关联 |
| | | * |
| | |
| | | */ |
| | | public int updateProjectExpert(ProjectExpert projectExpert); |
| | | |
| | | int batchUpdateProjectExpert(List<ProjectExpert> list); |
| | | /** |
| | | * 删除项目专家关联 |
| | | * |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteProjectExpertByIds(Long[] ids); |
| | | |
| | | /** |
| | | *获取未评价数量 |
| | | * @param projectId |
| | | * @return |
| | | */ |
| | | int getUnEva(Long projectId); |
| | | |
| | | /** |
| | | * |
| | | * @param projectId |
| | | * @return |
| | | */ |
| | | List<ProjectExpertEvaluationResp> projectExpertEvaluationList(Long projectId); |
| | | |
| | | /** |
| | | * 专家考评记录列表 |
| | | * @param req |
| | | * @return |
| | | */ |
| | | List<ProjectExpertResp> projectExpertEvaList(SysProjectExpertReq req); |
| | | } |