| | |
| | | /** |
| | | * 分页查询 |
| | | * @param page 分页对象 |
| | | * @param devicePurchasePlan 设备采购计划 |
| | | * @param queryDTO 设备采购计划 |
| | | * @return |
| | | */ |
| | | @Operation(summary = "分页查询" , description = "分页查询" ) |
| | |
| | | return R.ok(devicePurchasePlanService.removeBatchByIds(CollUtil.toList(ids))); |
| | | } |
| | | |
| | | /** |
| | | * 通过id删除设备采购计划明细 |
| | | * @param id |
| | | * @return R |
| | | */ |
| | | @Operation(summary = "通过id删除设备采购计划明细" , description = "通过id删除设备采购计划明细" ) |
| | | @SysLog("通过id删除设备采购计划明细" ) |
| | | @DeleteMapping("/removeItemById/{id}") |
| | | public R removeItemById(@PathVariable("id") Long id) { |
| | | return devicePurchasePlanService.removeItemById(id); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 导出excel 表格 |