| | |
| | | public List<ReceivingNoteItem> export(ReceivingNoteItem receivingNoteItem,Long[] ids) { |
| | | return receivingNoteItemService.list(Wrappers.lambdaQuery(receivingNoteItem).in(ArrayUtil.isNotEmpty(ids), ReceivingNoteItem::getId, ids)); |
| | | } |
| | | |
| | | /** |
| | | * 根据合同查询合同内的设备 |
| | | * @param contractId |
| | | * @return |
| | | */ |
| | | @Operation(summary = "根据合同查询合同内的设备" , description = "根据合同查询合同内的设备") |
| | | @GetMapping("/getDeviceListByContractId/{contractId}") |
| | | public R getDeviceListByContractId(@PathVariable("contractId")Long contractId) { |
| | | return receivingNoteItemService.getDeviceListByContractId(contractId); |
| | | } |
| | | } |