示例#1
0
		public SysTaskBase(SysTaskBase other)
		{
			this.Category = other.Category;
			this.context = other.context;
			this.CreateTime = other.CreateTime;
			this.Data = other.Data;
			this.EndTime = other.EndTime;
			this.ResourceID = other.ResourceID;
			this.SortID = other.SortID;
			this.Source = other.Source;
			this.StartTime = other.StartTime;
			this.Status = other.Status;
			this.StatusText = other.StatusText;
			this.TaskID = other.TaskID;
			this.TaskTitle = other.TaskTitle;
			this.TaskType = other.TaskType;
			this.Url = other.Url;
		}
示例#2
0
 public SysTaskBase(SysTaskBase other)
 {
     this.Category   = other.Category;
     this.context    = other.context;
     this.CreateTime = other.CreateTime;
     this.Data       = other.Data;
     this.EndTime    = other.EndTime;
     this.ResourceID = other.ResourceID;
     this.SortID     = other.SortID;
     this.Source     = other.Source;
     this.StartTime  = other.StartTime;
     this.Status     = other.Status;
     this.StatusText = other.StatusText;
     this.TaskID     = other.TaskID;
     this.TaskTitle  = other.TaskTitle;
     this.TaskType   = other.TaskType;
     this.Url        = other.Url;
 }
示例#3
0
 public SysAccomplishedTask(SysTaskBase other)
     : base(other)
 {
 }
示例#4
0
 public SysTask(SysTaskBase other)
     : base(other)
 {
 }