AHTC/RGD/RGD.ZhiQianAPI/ZhiQianModel/RequestStore.cs
2025-05-19 09:22:33 +08:00

27 lines
703 B
C#

namespace RGD.ZhiQianAPI.ZhiQianModel
{
/// <summary>
/// agv请求放货到输送线,需判断取放货口是否有物
/// </summary>
public class RequestStore
{
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; }
}
}