namespace RGD.ZhiQianAPI.ZhiQianModel { /// /// agv上报从输送线取货完成 /// public class ConfirmDilivery { private string _cell; private string _box; private int _wmsTaskId; /// /// 取货位 /// public string cell { get => _cell; set => _cell = value; } /// /// 容器编码 /// public string box { get => _box; set => _box = value; } /// /// 大任务id /// public int wmsTaskId { get => _wmsTaskId; set => _wmsTaskId = value; } } }