using System; namespace WCS.Entity.Protocol { /// /// WCS任务表_所有已经完成的 /// public class WCS_TASK_OLD : OBJ { /// /// 父级任务号 /// public int ParentTaskCode { get; set; } /// /// 当前位置 /// public string CurPoint { get; set; } /// /// 下一个地址 /// public string NextPoint { get; set; } /// /// 描述 /// public string Desc { get; set; } /// /// 执行时间 /// public DateTime ExecTime { get; set; } } }