using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using IStation.Model.Repair; namespace IStation.Model { /// /// 维修日志 /// public class RepairTaskLog : System.ICloneable { /// /// /// public RepairTaskLog() { } /// /// /// public RepairTaskLog(RepairTaskLog rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.FormID = rhs.FormID; this.OperateType = rhs.OperateType; this.OperateContent = rhs.OperateContent; this.OperateTime = rhs.OperateTime; this.OperateUserID = rhs.OperateUserID; this.OperateNote = rhs.OperateNote; } /// /// /// public void Reset(RepairTaskLog rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.FormID = rhs.FormID; this.OperateType = rhs.OperateType; this.OperateContent = rhs.OperateContent; this.OperateTime = rhs.OperateTime; this.OperateUserID = rhs.OperateUserID; this.OperateNote = rhs.OperateNote; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 表单标识 /// public long FormID { get; set; } /// /// 操作类型 /// public eTaskOperateType OperateType { get; set; } /// /// 操作内容 /// public string OperateContent { get; set; } /// /// 操作时间 /// public DateTime OperateTime { get; set; } /// /// 操作人标识 /// public long OperateUserID { get; set; } /// /// 操作说明 /// public string OperateNote { get; set; } /// /// /// public RepairTaskLog Clone() { return (RepairTaskLog)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }