namespace Yw.Entity
|
{
|
/// <summary>
|
/// Bimface文件 Label
|
/// </summary>
|
[SugarTable("bimface_file_label")]
|
public class BimfaceFileLabel : BaseEntity, System.ICloneable
|
{
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabel() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public BimfaceFileLabel(BimfaceFileLabel rhs) : base(rhs)
|
{
|
this.BimfaceFileID = rhs.BimfaceFileID;
|
this.Catagory = rhs.Catagory;
|
this.Content = rhs.Content;
|
}
|
|
/// <summary>
|
/// Bimface文件id
|
/// </summary>
|
public long BimfaceFileID { 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 BimfaceFileLabel Clone()
|
{
|
return (BimfaceFileLabel)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
|
}
|
}
|