| | |
| | | @GetMapping("/pageConsumablesUnInventory") |
| | | @ApiOperation("分页查询库存") |
| | | public R pageConsumablesUnInventory(Page page, ConsumablesUnInventoryDto consumablesUnInventoryDto) { |
| | | IPage<ConsumablesUnInventoryDto> ConsumablesUnInventoryDtoIPage = consumablesUnInventoryService.pageConsumablesUnInventory(page, consumablesUnInventoryDto); |
| | | return R.ok(ConsumablesUnInventoryDtoIPage); |
| | | IPage<ConsumablesUnInventoryDto> consumablesUnInventoryDtoIPage = consumablesUnInventoryService.pageConsumablesUnInventory(page, consumablesUnInventoryDto); |
| | | return R.ok(consumablesUnInventoryDtoIPage); |
| | | } |
| | | |
| | | @PostMapping("/addConsumablesUnInventory") |