| | |
| | | */ |
| | | @GetMapping("/detail") |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation(value = "详情", notes = "传入gdSupplyDemandAuditAttachment") |
| | | public R<GdSupplyDemandAuditAttachmentVO> detail(GdSupplyDemandAuditAttachmentEntity gdSupplyDemandAuditAttachment) { |
| | | GdSupplyDemandAuditAttachmentEntity detail = gdSupplyDemandAuditAttachmentService.getOne(Condition.getQueryWrapper(gdSupplyDemandAuditAttachment)); |
| | | return R.data(GdSupplyDemandAuditAttachmentWrapper.build().entityVO(detail)); |
| | | @ApiOperation(value = "详情", notes = "传入demandId") |
| | | public R<List<GdSupplyDemandAuditAttachmentVO>> detail(@ApiParam(value = "供需需求ID", required = true) @RequestParam Long demandId) { |
| | | return R.data(gdSupplyDemandAuditAttachmentService.listSupplyDemandAuditAttachments(demandId)); |
| | | } |
| | | /** |
| | | * 供需需求审核附件表 分页 |