using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 维修日志文件 /// public class RepairTaskLogFile : System.ICloneable { /// /// /// public RepairTaskLogFile() { } /// /// /// public RepairTaskLogFile(RepairTaskLogFile rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.FormID = rhs.FormID; this.LogID = rhs.LogID; this.FileFormat = rhs.FileFormat; this.FileName = rhs.FileName; this.FileSuffix = rhs.FileSuffix; this.StorageHouse = rhs.StorageHouse; this.StorageCode = rhs.StorageCode; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// /// public void Reset(RepairTaskLogFile rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.FormID = rhs.FormID; this.LogID = rhs.LogID; this.FileFormat = rhs.FileFormat; this.FileName = rhs.FileName; this.FileSuffix = rhs.FileSuffix; this.StorageHouse = rhs.StorageHouse; this.StorageCode = rhs.StorageCode; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 表单标识 /// public long FormID { get; set; } /// /// 日志标识 /// public long LogID { get; set; } /// /// 文件格式 /// public eFileFormat FileFormat { get; set; } /// /// 文件名称 /// public string FileName { get; set; } /// /// 文件后缀 /// public string FileSuffix { get; set; } /// /// 存储仓库 /// public string StorageHouse { get; set; } /// /// 存储编码 /// public string StorageCode { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public RepairTaskLogFile Clone() { return (RepairTaskLogFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }