zhangherong
2025-04-02 131b2dc4b3e5e3e894b2d55d485e46ef010b5f30
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));
    }
}