using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// Bimface文件映射 /// public partial class BimfaceFileMapping : System.ICloneable { /// /// /// public BimfaceFileMapping() { } /// /// /// public BimfaceFileMapping(BimfaceFileMapping rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.BelongType = rhs.BelongType; this.BelongID = rhs.BelongID; this.BimfaceFileTypeID = rhs.BimfaceFileTypeID; this.BimfaceFileID = rhs.BimfaceFileID; this.Settings = rhs.Settings; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// /// public void Reset(BimfaceFileMapping rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.BelongType = rhs.BelongType; this.BelongID = rhs.BelongID; this.BimfaceFileTypeID = rhs.BimfaceFileTypeID; this.BimfaceFileID = rhs.BimfaceFileID; this.Settings = rhs.Settings; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 所属类型 /// public string BelongType { get; set; } /// /// 所属标识 /// public long BelongID { get; set; } /// /// Bimface文件类型标识 /// public long BimfaceFileTypeID { get; set; } /// /// Bimface文件标识 /// public long BimfaceFileID { get; set; } /// /// 设置 /// public string Settings { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public BimfaceFileMapping Clone() { return (BimfaceFileMapping)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }