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