| | |
| | | * 获取生产批次详细信息 |
| | | */ |
| | | @ApiOperation("获取生产批次详细信息") |
| | | @PreAuthorize("@ss.hasPermi('oa:batch:query')") |
| | | @PreAuthorize("@ss.hasPermi('oa:batch:info')") |
| | | @GetMapping("/{id}") |
| | | public AjaxResult<DevBatchVo> getInfo(@ApiParam("主键") |
| | | @NotNull(message = "主键不能为空") |
| | |
| | | * 获取智控设备详细信息 |
| | | */ |
| | | @ApiOperation("获取智控设备详细信息") |
| | | @PreAuthorize("@ss.hasPermi('oa:equipment:query')") |
| | | @PreAuthorize("@ss.hasPermi('oa:equipment:info')") |
| | | @GetMapping("/{id}") |
| | | public AjaxResult<DevEquipmentVo> getInfo(@ApiParam("主键") |
| | | @NotNull(message = "主键不能为空") |
| | |
| | | * 获取外设单元详细信息 |
| | | */ |
| | | @ApiOperation("获取外设单元详细信息") |
| | | @PreAuthorize("@ss.hasPermi('oa:peripheralUnit:query')") |
| | | @PreAuthorize("@ss.hasPermi('oa:peripheralUnit:info')") |
| | | @DataDictClass |
| | | @GetMapping("/{id}") |
| | | public AjaxResult<DevPeripheralUnitVo> getInfo(@ApiParam("主键") |