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

60 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}
}
}