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 BimfaceFileUserSetting : System.ICloneable { /// /// /// public BimfaceFileUserSetting() { } /// /// /// public BimfaceFileUserSetting(BimfaceFileUserSetting rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.UserID = rhs.UserID; this.BimfaceFileMappingID = rhs.BimfaceFileMappingID; this.Settings = rhs.Settings; } /// /// /// public void Reset(BimfaceFileUserSetting rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.UserID = rhs.UserID; this.BimfaceFileMappingID = rhs.BimfaceFileMappingID; this.Settings = rhs.Settings; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 用户标识 /// public long UserID { get; set; } /// /// Bimface文件映射标识 /// public long BimfaceFileMappingID { get; set; } /// /// 设置 /// public string Settings { get; set; } /// /// /// public BimfaceFileUserSetting Clone() { return (BimfaceFileUserSetting)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }