namespace Yw.Model { /// /// Bimface文件关联 /// public class BimfaceFileRelation : BaseModel, ISorter, System.ICloneable { /// /// /// public BimfaceFileRelation() { } /// /// /// public BimfaceFileRelation(BimfaceFileRelation rhs) : base(rhs) { this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.BimfaceFileID = rhs.BimfaceFileID; this.Purpose = rhs.Purpose; this.Content = rhs.Content; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// /// public void Reset(BimfaceFileRelation rhs) { this.ID = rhs.ID; this.ObjectType = rhs.ObjectType; this.ObjectID = rhs.ObjectID; this.BimfaceFileID = rhs.BimfaceFileID; this.Purpose = rhs.Purpose; this.Content = rhs.Content; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 数据类型 /// public string ObjectType { get; set; } /// /// 数据id /// public long ObjectID { get; set; } /// /// Bimface文件id /// public long BimfaceFileID { get; set; } /// /// 用途 /// public string Purpose { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public BimfaceFileRelation Clone() { return new BimfaceFileRelation(this); } object ICloneable.Clone() { return Clone(); } } }