33 lines
619 B
C#
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;
|
|
}
|
|
}
|
|
}
|