using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Model { /// /// 报修文件 /// public class RepairRequestFile:System.ICloneable { /// /// /// public RepairRequestFile() { } /// /// /// public RepairRequestFile(RepairRequestFile rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.FormID = rhs.FormID; 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(RepairRequestFile rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.FormID = rhs.FormID; 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 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 RepairRequestFile Clone() { return (RepairRequestFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }