using Yw.Entity; namespace HStation.Entity { /// /// Revit传输文件 /// [SugarTable("transfer_revit_file")] public class TransferRevitFile : BaseEntity, System.ICloneable { /// /// /// public TransferRevitFile() { } /// /// /// public TransferRevitFile(TransferRevitFile rhs) : base(rhs) { this.FileName = rhs.FileName; this.FileCode = rhs.FileCode; this.FileSize = rhs.FileSize; this.FileSuffix = rhs.FileSuffix; this.UploadTime = rhs.UploadTime; this.UploadUserName = rhs.UploadUserName; this.UploadUserID = rhs.UploadUserID; this.StorageHouse = rhs.StorageHouse; this.StorageCode = rhs.StorageCode; this.Description = rhs.Description; } /// /// 文件名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string FileName { get; set; } /// /// 文件编码 /// [SugarColumn(Length = 50, IsNullable = true)] public string FileCode { get; set; } /// /// 文件大小 /// public long FileSize { get; set; } /// /// 文件后缀 /// [SugarColumn(Length = 50, IsNullable = true)] public string FileSuffix { get; set; } /// /// 上传时间 /// public DateTime UploadTime { get; set; } /// /// 上传人名称 /// [SugarColumn(Length = 50, IsNullable = true)] public string UploadUserName { get; set; } /// /// 上传人id /// public long UploadUserID { get; set; } /// /// 存储仓库 /// [SugarColumn(Length = 50, IsNullable = true)] public string StorageHouse { get; set; } /// /// 存储编码 /// [SugarColumn(Length = 500, IsNullable = true)] public string StorageCode { get; set; } /// /// 说明 /// [SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)] public string Description { get; set; } /// /// /// public TransferRevitFile Clone() { return (TransferRevitFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }