| | |
| | | } |
| | | |
| | | @ApiOperation(value = "标准库-->物料-->侧边栏四级展开") |
| | | @ApiImplicitParams(value = { |
| | | @ApiImplicitParam(value = "型号/型号名称", name = "specificationName", dataTypeClass = String.class) |
| | | }) |
| | | @GetMapping("/list") |
| | | public Result<?> getFourLevelInformation(String specificationName) { |
| | | List<Map<String, Object>> fourLevelInformation = materialService.getFourLevelInformation(specificationName); |
| | | public Result<?> getFourLevelInformation() { |
| | | List<Map<String, Object>> fourLevelInformation = materialService.getFourLevelInformation(); |
| | | return Result.success(fourLevelInformation); |
| | | } |
| | | } |