lyh
2025-03-17 cf7d913ff24fce658f72cb996d056ccdaf1b96e0
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));
    }
}