| | |
| | | return R.ok(projectManagementService.selectProjectExpertDetailList(projectExpertId)); |
| | | } |
| | | |
| | | @ApiOperation(value = "专家考评记录——专家考评详情") |
| | | //@PreAuthorize("@ss.hasPermi('system:management:list')") |
| | | @GetMapping("/selectProjectExpertDetail") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "projectExpertId", dataType = "long", required = true, value = "项目专家id") |
| | | }) |
| | | public R<ProjectDetailResp> selectProjectExpertDetail(@RequestParam("projectExpertId") Long projectExpertId) |
| | | { |
| | | return R.ok(projectManagementService.selectProjectExpertDetail(projectExpertId)); |
| | | } |
| | | |
| | | |
| | | @GetMapping("/selectProjectFileList") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "projectId", dataType = "long", required = true, value = "项目id"), |
| | |
| | | return R.ok(projectManagementService.getProjectNum()); |
| | | } |
| | | |
| | | @ApiOperation(value = "项目管理----导出专家报销") |
| | | //@PreAuthorize("@ss.hasPermi('system:management:list')") |
| | | @GetMapping("/projectExpertExportList") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "projectId", dataType = "long", required = true, value = "项目id") |
| | | }) |
| | | public R<List<ProjectExpertExportInfoRes>> projectExpertExportList(@RequestParam("projectId") Long projectId) |
| | | { |
| | | return R.ok(projectManagementService.projectExpertExportList(projectId)); |
| | | } |
| | | |
| | | } |