namespace HH.WCS.Mobox3.Template.Entity.Dto { /// /// 线体任务DTO /// public class LineTaskDto { /// /// 任务号 /// public int Task_No { get; set; } /// /// 托盘号 /// public string Pallet_No { get; set; } /// /// 起点编号 /// public int Source_Station { get; set; } /// /// 终点编号 /// public int Destination_Station { get; set; } } }