#pragma once //stl #include //robotics #include using namespace robotics; /* ************************************************ * 作者:Lenovo * 时间:2024/6/3 21:14:08 * 机器名:DESKTOP-4I13MDL * 实体类名:web_stepping_request_v1_info * 数据库表名 [[SqlTable("xxx")]] * 不生成反射 [[NoReflect]] * Json字段名 [[Json("xxx")]] * 不生成Json字段 [[NoJson(true)]] * Sql字段名 [[Sql("xxx")]] * 不生成Sql字段 [[NoSql(true)]] * Excel字段名 [[Excel("xxx")]] * 不生成Excel字段 [[NoExcel(true)]] * *************************************************/ /** * @brief 表示网络步进请求的结构体,包含层号和速度信息。 */ struct web_stepping_request_v1_info { /** * @brief 表示层号的整数变量。 */ [[Json("layerNo")]] int layer_no = 0; /** * @brief 表示速度的变量。 */ double speed = 0; };