27 lines
672 B
C#
27 lines
672 B
C#
|
namespace RGD.ZhiQianAPI.ZhiQianModel
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// agv上报输送线放货完成
|
|||
|
/// </summary>
|
|||
|
public class ConfirmStore
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|