using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; using IStation.Model.Bimface; namespace IStation.Model { /// /// Bimface文件 /// public partial class BimfaceFile : System.ICloneable { /// /// /// public BimfaceFile() { } /// /// /// /// public BimfaceFile(BimfaceFile rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.BimfaceID = rhs.BimfaceID; this.Name = rhs.Name; this.ModelType = rhs.ModelType; this.FileStatus = rhs.FileStatus; this.FileSize = rhs.FileSize; this.FormatType = rhs.FormatType; this.FileSuffix = rhs.FileSuffix; this.StorageUrl = rhs.StorageUrl; this.Settings = rhs.Settings; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.UseStatus = rhs.UseStatus; this.Description = rhs.Description; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.UpdateUserID = rhs.UpdateUserID; this.UpdateTime = rhs.UpdateTime; } /// /// /// public void Reset(BimfaceFile rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.BimfaceID = rhs.BimfaceID; this.Name = rhs.Name; this.ModelType = rhs.ModelType; this.FileStatus = rhs.FileStatus; this.FileSize = rhs.FileSize; this.FormatType = rhs.FormatType; this.FileSuffix = rhs.FileSuffix; this.StorageUrl = rhs.StorageUrl; this.Settings = rhs.Settings; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.UseStatus = rhs.UseStatus; this.Description = rhs.Description; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.UpdateUserID = rhs.UpdateUserID; this.UpdateTime = rhs.UpdateTime; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// Bimface平台标识 /// public long BimfaceID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 模型类型 /// public eModelType ModelType { get; set; } /// /// 文件状态 /// public eFileStatus FileStatus { get; set; } /// /// 文件大小 /// public string FileSize { get; set; } /// /// 文件格式 /// public eFormatType FormatType { get; set; } /// /// 文件后缀 /// public string FileSuffix { get; set; } /// /// 存储URL 为空标识BIMFACE服务器 /// public string StorageUrl { get; set; } /// /// 设置 /// public string Settings { get; set; } /// /// 标签名称 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 使用状态 /// public eUseStatus UseStatus { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 创建用户标识 /// public long CreateUserID { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新用户标识 /// public long? UpdateUserID { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// /// public BimfaceFile Clone() { return (BimfaceFile)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }