chore: 初始化平芝126KV总装线 WebApi

This commit is contained in:
yexingqiang
2026-06-08 17:19:25 +08:00
commit 437c251f58
126 changed files with 5439 additions and 0 deletions

View 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;
}
}
}

View 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;
}
}
}