using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
namespace IStation.Entity
{
///
/// Bimface文件类型
///
[SugarTable("bimface_file_type")]
public class BimfaceFileType :CorpTraceEntity, System.ICloneable,ISorter,IUseStatus,ITagName
{
///
///
///
public BimfaceFileType() { }
///
///
///
public BimfaceFileType(BimfaceFileType rhs):base(rhs)
{
this.ObjectType = rhs.ObjectType;
this.Name = rhs.Name;
this.Identifier = rhs.Identifier;
this.FormatType = rhs.FormatType;
this.IsDefault = rhs.IsDefault;
this.SortCode = rhs.SortCode;
this.TagName = rhs.TagName;
this.UseStatus = rhs.UseStatus;
this.Description = rhs.Description;
}
///
/// 对象类型
///
public string ObjectType
{
get { return _objecttype; }
set { _objecttype = value; }
}
private string _objecttype;
///
/// 名称
///
public string Name
{
get { return _name; }
set { _name = value; }
}
private string _name;
///
/// 标识符
///
public string Identifier
{
get { return _identifier; }
set { _identifier = value; }
}
private string _identifier;
///
/// 格式类型
///
public int FormatType
{
get { return _formattype; }
set { _formattype = value; }
}
private int _formattype;
///
/// 默认
///
public bool IsDefault
{
get { return _isdefault; }
set { _isdefault = value; }
}
private bool _isdefault;
///
/// 标签名称
///
public string TagName
{
get { return _tagname; }
set { _tagname = value; }
}
private string _tagname;
///
/// 使用状态
///
public int UseStatus
{
get { return _usestatus; }
set { _usestatus = value; }
}
private int _usestatus;
///
/// 排序码
///
public int SortCode
{
get { return _sortcode; }
set { _sortcode = value; }
}
private int _sortcode;
///
/// 说明
///
public string Description
{
get { return _description; }
set { _description = value; }
}
private string _description;
///
///
///
public BimfaceFileType Clone()
{
return (BimfaceFileType)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}