| | |
| | | return success(bidEvaluationService.createEvaluation(createReqVO)); |
| | | } |
| | | |
| | | @PutMapping("/update") |
| | | @Operation(summary = "更新评标记录") |
| | | @PreAuthorize("@ss.hasPermission('srm:bid-evaluation:update')") |
| | | public CommonResult<Boolean> updateEvaluation(@Valid @RequestBody SrmBidEvaluationSaveReqVO updateReqVO) { |
| | | bidEvaluationService.updateEvaluation(updateReqVO); |
| | | return success(true); |
| | | } |
| | | |
| | | @GetMapping("/list-by-project") |
| | | @Operation(summary = "按招标项目获取评标列表") |
| | | @PreAuthorize("@ss.hasPermission('srm:bid-evaluation:query')") |