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 BimfaceFileType : System.ICloneable { /// /// /// public BimfaceFileType() { } /// /// /// public BimfaceFileType(BimfaceFileType rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ObjectType = rhs.ObjectType; this.Name = rhs.Name; this.Identifier = rhs.Identifier; this.FormatType = rhs.FormatType; this.IsDefault = rhs.IsDefault; 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(BimfaceFileType rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.ObjectType = rhs.ObjectType; this.Name = rhs.Name; this.Identifier = rhs.Identifier; this.FormatType = rhs.FormatType; this.IsDefault = rhs.IsDefault; 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; } /// /// 对象类型 /// public string ObjectType { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 标识符 /// public string Identifier { get; set; } /// /// 文件格式 /// public eFormatType FormatType { get; set; } /// /// 是否默认 /// public bool IsDefault { 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 BimfaceFileType Clone() { return (BimfaceFileType)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }