namespace Yw.Entity
|
{
|
/// <summary>
|
/// Bimface文件关联标签
|
/// </summary>
|
[SugarTable("bimface_file_relation_label")]
|
public class BimfaceFileRelationLabel : BaseEntity, System.ICloneable
|
{
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileRelationLabel() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileRelationLabel(BimfaceFileRelationLabel rhs) : base(rhs)
|
{
|
this.RelationID = rhs.RelationID;
|
this.Catagory = rhs.Catagory;
|
this.Content = rhs.Content;
|
}
|
|
/// <summary>
|
/// 关联id
|
/// </summary>
|
public long RelationID { get; set; }
|
|
/// <summary>
|
/// 分类
|
/// </summary>
|
[SugarColumn(Length = 100, IsNullable = true)]
|
public string Catagory { get; set; }
|
|
/// <summary>
|
/// 内容
|
/// </summary>
|
[SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
|
public string Content { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileRelationLabel Clone()
|
{
|
return (BimfaceFileRelationLabel)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|