| | |
| | | |
| | | @ApiOperation("右上角新增-->物料清单-->选择工序,工艺") |
| | | @ApiImplicitParams(value = { |
| | | @ApiImplicitParam(name = "specificationsId", value = "型号id", dataTypeClass = Integer.class, required = true) |
| | | @ApiImplicitParam(name = "specificationsId", value = "型号id", dataTypeClass = Integer.class, required = true), |
| | | @ApiImplicitParam(name = "version", value = "当前版本", dataTypeClass = Integer.class, required = true) |
| | | }) |
| | | @GetMapping("/chooseTech") |
| | | public Result<?> chooseTech(Integer specificationsId) { |
| | | return Result.success(mbomService.chooseTech(specificationsId)); |
| | | public Result<?> chooseTech(Integer specificationsId,Integer version) { |
| | | return Result.success(mbomService.chooseTech(specificationsId,version)); |
| | | } |
| | | |
| | | |