|
|
@@ -48,14 +48,17 @@ public class ExpertReviewController { |
|
|
|
return expertReviewManage.getExpertReviewDetail(userId, projectId); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/listForGroupLeader/{projectId}/{userId}") |
|
|
|
@GetMapping("/listForGroupLeader/{projectId}/{meetingId}/{userId}") |
|
|
|
@ApiImplicitParams({ |
|
|
|
@ApiImplicitParam(name = "userId", value = "专家ID"), |
|
|
|
@ApiImplicitParam(name = "projectId", value = "项目ID") |
|
|
|
@ApiImplicitParam(name = "projectId", value = "项目ID"), |
|
|
|
@ApiImplicitParam(name = "meetingId", value = "会议ID") |
|
|
|
}) |
|
|
|
@ApiOperation("查看组员评审意见") |
|
|
|
public List<ExpertReviewDetailVO> listForGroupLeader(@PathVariable Long userId, @PathVariable Long projectId) { |
|
|
|
return expertReviewManage.listForGroupLeader(projectId, userId); |
|
|
|
public List<ExpertReviewDetailVO> listForGroupLeader(@PathVariable Long userId, |
|
|
|
@PathVariable Long meetingId, |
|
|
|
@PathVariable Long projectId) { |
|
|
|
return expertReviewManage.listForGroupLeader(projectId, meetingId, userId); |
|
|
|
} |
|
|
|
|
|
|
|
} |