| | |
| | | */ |
| | | @GetMapping("/detail") |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation(value = "详情", notes = "传入gdSupplyDemandAudit") |
| | | public R<GdSupplyDemandAuditVO> detail(GdSupplyDemandAuditEntity gdSupplyDemandAudit) { |
| | | GdSupplyDemandAuditEntity detail = gdSupplyDemandAuditService.getOne(Condition.getQueryWrapper(gdSupplyDemandAudit)); |
| | | return R.data(GdSupplyDemandAuditWrapper.build().entityVO(detail)); |
| | | @ApiOperation(value = "详情", notes = "传入demandId") |
| | | public R<List<GdSupplyDemandAuditVO>> detail(@ApiParam(value = "供需需求ID", required = true) @RequestParam Long demandId) { |
| | | return R.data(gdSupplyDemandAuditService.listSupplyDemandAudit(demandId)); |
| | | } |
| | | /** |
| | | * 供需需求审核记录表 分页 |