using Yw.Model;
namespace HStation.Model
{
///
/// Revit传输文件
///
public class TransferRevitFile : BaseModel, 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;
}
///
///
///
public void Reset(TransferRevitFile rhs)
{
this.ID = rhs.ID;
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;
}
///
/// 文件名称
///
public string FileName { get; set; }
///
/// 文件编码
///
public string FileCode { get; set; }
///
/// 文件大小
///
public long FileSize { get; set; }
///
/// 文件后缀
///
public string FileSuffix { get; set; }
///
/// 上传时间
///
public DateTime UploadTime { get; set; }
///
/// 上传人名称
///
public string UploadUserName { get; set; }
///
/// 上传人id
///
public long UploadUserID { get; set; }
///
/// 存储仓库
///
public string StorageHouse { get; set; }
///
/// 存储编码
///
public string StorageCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
///
///
///
public TransferRevitFile Clone()
{
return new TransferRevitFile(this);
}
object ICloneable.Clone()
{
return this.Clone();
}
}
}