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

90 lines
1.8 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;
namespace WebApi.Models
{
public class AGV_To_MES_AgvMateria_Req
{
/// <summary>
/// 任务号 唯一ID
/// </summary>
public string taskId
{
get;
set;
}
/// <summary>
/// 客户端 固定值agv
/// </summary>
public string clientId
{
get;
set;
}
/// <summary>
/// 任务类型 0叫料1送料2叫空托3送空托4点对点5退料
/// </summary>
public int taskType
{
get;
set;
}
/// <summary>
/// 任务状态 3任务取消 21取货完成 23 放完
/// </summary>
public int status
{
get;
set;
}
/// <summary>
/// 取料点 taskType为134时必填
/// </summary>
public string pickStock
{
get;
set;
}
/// <summary>
/// 放料点 taskType为024时必填
/// </summary>
public string dropStock
{
get;
set;
}
/// <summary>
/// 托盘号
/// </summary>
public string palletId
{
get;
set;
}
/// <summary>
/// 物料号 物料编码(叫料时必填)
/// </summary>
public string materialId
{
get;
set;
}
/// <summary>
/// 需求数量
/// </summary>
public int requireNum
{
get;
set;
}
/// <summary>
/// 下发时间
/// </summary>
public string createTime
{
get;
set;
}
}
}