using System; using System.Collections.Generic; using System.Text; namespace Model.ModelDto.BllTaskDto { public class BllTaskSyncDto { public int Id { get; set; } /// /// Desc:任务号 /// Default: /// Nullable:False /// public string TaskNo { get; set; } /// /// Desc:任务类型 /// Default: /// Nullable:False /// public string Type { get; set; } /// /// Desc:状态 /// Default: /// Nullable:True /// public string Status { get; set; } /// /// Desc:起始位置 /// Default: /// Nullable:True /// public string StartLocat { get; set; } /// /// Desc:目标位置 /// Default: /// Nullable:True /// public string EndLocat { get; set; } /// /// Desc:托盘号 /// Default: /// Nullable:True /// public string PalletNo { get; set; } /// /// Desc:托盘类型 /// Default: /// Nullable:True /// public string PalletType { get; set; } /// /// 完成时间 /// Default: /// Nullable:True /// public string FinishDate { get; set; } /// /// Desc:WCS操作人 /// Default: /// Nullable:True /// public string WCSName { get; set; } /// /// 创建日期 /// public string CreateTime { get; set; } /// /// 更新日期 /// public string UpdateTime { get; set; } /// /// 更新人 /// public string UpdateUserName { get; set; } } }