27 lines
678 B
C#
27 lines
678 B
C#
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; }
|
|
}
|
|
} |