| | |
| | | @GetMapping("/listPage") |
| | | @Log(title = "生产入库-入库管理-列表", businessType = BusinessType.OTHER) |
| | | @ApiOperation(value = "入库管理列表") |
| | | public AjaxResult listPage(Page page, ConsumablesInRecordDto ConsumablesInRecordDto) { |
| | | IPage<ConsumablesInRecordDto> result = consumablesInRecordService.listPage(page, ConsumablesInRecordDto); |
| | | public AjaxResult listPage(Page page, ConsumablesInRecordDto consumablesInRecordDto) { |
| | | IPage<ConsumablesInRecordDto> result = consumablesInRecordService.listPage(page, consumablesInRecordDto); |
| | | return AjaxResult.success(result); |
| | | } |
| | | |
| | |
| | | |
| | | @PostMapping("/exportConsumablesInRecord") |
| | | @ApiOperation("导出入库记录") |
| | | public void exportConsumablesInRecord(HttpServletResponse response, ConsumablesInRecordDto ConsumablesInRecordDto) { |
| | | consumablesInRecordService.exportConsumablesInRecord(response,ConsumablesInRecordDto); |
| | | public void exportConsumablesInRecord(HttpServletResponse response, ConsumablesInRecordDto consumablesInRecordDto) { |
| | | consumablesInRecordService.exportConsumablesInRecord(response,consumablesInRecordDto); |
| | | } |
| | | |
| | | } |