namespace Yw.Entity { /// /// 报修文件 /// [SugarTable("repair_request_file")] public class RepairRequestFile : BaseEntity, ISorter, System.ICloneable { /// /// /// public RepairRequestFile() { } /// /// /// public RepairRequestFile(RepairRequestFile rhs) : base(rhs) { this.FormID = rhs.FormID; this.FileName = rhs.FileName; this.FileSuffix = rhs.FileSuffix; this.StorageHouse = rhs.StorageHouse; this.StorageCode = rhs.StorageCode; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 表单id /// public long FormID { get; set; } /// /// 文件名称 /// [SugarColumn(Length = 500, IsNullable = true)] public string FileName { get; set; } /// /// 文件后缀 /// [SugarColumn(Length = 50, IsNullable = true)] public string FileSuffix { get; set; } /// /// 存储仓库 /// [SugarColumn(Length = 500, IsNullable = true)] public string StorageHouse { get; set; } /// /// 存储编码 /// [SugarColumn(Length = 500, IsNullable = true)] public string StorageCode { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public RepairRequestFile Clone() { return (RepairRequestFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }