using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sln.Wcs.Model.Dto { public class TaskInfo { /// /// 物料类型 /// public string? MaterialType { get; set; } /// /// 任务类型 /// public string? TaskType { get; set; } /// /// 任务起点 /// public string? TaskStartPoint { get; set; } /// /// 任务终点 /// public string? TaskEndPoint { get; set; } /// /// 优先级 /// public int Prority { get; set; } } }