namespace HStation.Dto { /// /// Revit文件 dto /// public class TransferRevitFileDto { /// /// /// public TransferRevitFileDto() { } /// /// /// public TransferRevitFileDto(Model.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; } /// /// ID /// public long ID { get; set; } /// 文件名称 /// 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; } } }