| | |
| | | |
| | | @ApiOperation(value = "任务报名详情", response = NeedProblemClaimDTO.class) |
| | | @GetMapping("/getNeedClaimDetails") |
| | | public R getNeedClaimDetails(@RequestParam("id") String id) |
| | | public R getNeedClaimDetails(@RequestParam(value = "id", required = false) String id, |
| | | @RequestParam(value = "taskId", required = false) String taskId, |
| | | @RequestParam(value = "userId", required = false) String userId) |
| | | { |
| | | return newStriveForFeign.getNeedClaimDetails(id); |
| | | return newStriveForFeign.getNeedClaimDetails(id,taskId,userId); |
| | | } |
| | | |
| | | @ApiOperation(value = "任务报名") |