using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Entity.ToAGV { public class RequestTask { /// /// 作业任务号 /// public string TASK_NO { get; set; } /// /// 起点 /// public string FROM_POSITION { get; set; } /// /// 终点 /// public string TO_POSITION { get; set; } /// /// 物料信息 /// public string Material { get; set; } /// /// 任务等级 /// public int? Priority { get; set; } public int? agv_qty { get; set; } } }