AHTC/RGD/RGD.ZhiQianAPI/ZhiQianModel/ConfirmDilivery.cs

27 lines
678 B
C#
Raw Normal View History

2025-05-19 09:22:33 +08:00
namespace RGD.ZhiQianAPI.ZhiQianModel
{
/// <summary>
/// agv上报从输送线取货完成
/// </summary>
public class ConfirmDilivery
{
private string _cell;
private string _box;
private int _wmsTaskId;
/// <summary>
/// 取货位
/// </summary>
public string cell { get => _cell; set => _cell = value; }
/// <summary>
/// 容器编码
/// </summary>
public string box { get => _box; set => _box = value; }
/// <summary>
/// 大任务id
/// </summary>
public int wmsTaskId { get => _wmsTaskId; set => _wmsTaskId = value; }
}
}