| | |
| | | return AjaxResult.success(list); |
| | | } |
| | | |
| | | @PutMapping("/addOrUpdateBomStructs") |
| | | @PutMapping("/addOrUpdateBomStructs/{orderId}") |
| | | @ApiOperation("新增/更新BOM子集结构") |
| | | public AjaxResult addOrUpdateBomStructs(@RequestBody ProductionOrderStructureDto instanceDto) { |
| | | productionOrderStructureService.addOrUpdateBomStructs(instanceDto); |
| | | public AjaxResult addOrUpdateBomStructs(@PathVariable Long orderId, @RequestBody List<ProductionOrderStructureDto> list) { |
| | | productionOrderStructureService.addOrUpdateBomStructs(orderId, list); |
| | | return AjaxResult.success(); |
| | | } |
| | | |