Files
46-Pingzhi126-ZZ-WebApi/Models/Req/MES_To_AGV_From_WEB_Req.cs
2026-06-08 17:19:25 +08:00

33 lines
619 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WebApi.Models
{
/// <summary>
/// 从前端发来的请求发往AGV
/// </summary>
public class MES_To_AGV_From_WEB_Req
{
/// <summary>
/// 请求URL 只携带最后一个单词
/// </summary>
public string url
{
get;
set;
}
/// <summary>
/// 携带的请求参数
/// </summary>
public object data
{
get;
set;
}
}
}