namespace Yw.Entity { /// /// 维修日志文件 /// [SugarTable("repair_task_log_file")] public class RepairTaskLogFile : BaseEntity, ISorter, System.ICloneable { /// /// /// public RepairTaskLogFile() { } /// /// /// public RepairTaskLogFile(RepairTaskLogFile rhs) : base(rhs) { this.FormID = rhs.FormID; this.LogID = rhs.LogID; 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; } /// /// 日志id /// public long LogID { 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 RepairTaskLogFile Clone() { return (RepairTaskLogFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }