chore: 初始化平芝126KV总装线 WebApi
This commit is contained in:
59
Models/Req/AGV_To_MES_AgvPass_Req.cs
Normal file
59
Models/Req/AGV_To_MES_AgvPass_Req.cs
Normal file
@@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace WebApi.Models
|
||||
{
|
||||
/// <summary>
|
||||
/// AGV发送 到位 离开信号
|
||||
/// </summary>
|
||||
public class AGV_To_MES_AgvPass_Req
|
||||
{
|
||||
/// <summary>
|
||||
/// 第三方任务编号,系统唯一不可重复
|
||||
/// </summary>
|
||||
public string taskId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 工位号
|
||||
/// </summary>
|
||||
public string station
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 工件编号
|
||||
/// </summary>
|
||||
public string EngineNo
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 机型号
|
||||
/// </summary>
|
||||
public string SortNo
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 推送类型:0到位,1离开 当前只推送到位,保留离开推送
|
||||
/// </summary>
|
||||
public int type
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
32
Models/Req/MES_To_AGV_From_WEB_Req.cs
Normal file
32
Models/Req/MES_To_AGV_From_WEB_Req.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user