shiyunteng
2025-03-27 a7ad35b3e20867204cda9faa7bdf8a686264e906
platformx-device-biz/src/main/java/com/by4cloud/platformx/device/controller/ReceivingNoteItemController.java
@@ -116,4 +116,15 @@
    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);
   }
}