using IStation.Model.Repair; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 报修日志 /// public class RepairRequestLog:System.ICloneable { /// /// /// public RepairRequestLog() { } /// /// /// public RepairRequestLog(RepairRequestLog 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(RepairRequestLog 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 eRequestOperateType OperateType { get; set; } /// /// 操作内容 /// public string OperateContent { get; set; } /// /// 操作时间 /// public DateTime OperateTime { get; set; } /// /// 操作人标识 /// public long OperateUserID { get; set; } /// /// 操作说明 /// public string OperateNote { get; set; } /// /// /// public RepairRequestLog Clone() { return (RepairRequestLog)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }