namespace Yw.Application
{
///
///
///
public class BimfaceFileRelationStdDto
{
///
///
///
public BimfaceFileRelationStdDto() { }
///
///
///
public BimfaceFileRelationStdDto(Model.BimfaceFileRelation rhs)
{
this.ID = rhs.ID;
this.ObjectType = rhs.ObjectType;
this.ObjectID = rhs.ObjectID;
this.BimfaceFileID = rhs.BimfaceFileID;
this.Purpose = rhs.Purpose;
this.Settings = rhs.Settings;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// id
///
public long ID { get; set; }
///
/// 数据类型
///
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 Settings { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}