lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/controller/DeviceManagementController.java
@@ -125,4 +125,16 @@ return Result.OK(deviceManagementService.getDeviceManagementListByProductionId(productionId)); } /** * 通过id查询设备列表信息 * @param id * @return */ @AutoLog(value = "设备类管理信息-通过id查询设备列表信息") @ApiOperation(value = "设备类管理信息-通过id查询设备列表信息", notes = "设备类管理信息-通过id查询设备列表信息") @GetMapping("/getEquipmentListById") public Result<?> getEquipmentListByProductionId(String id){ return Result.OK(deviceManagementService.getEquipmentListById(id)); } }