namespace HStation.Dto
{
///
/// 图表关联
///
public class PhartDiagramRelationDto
{
///
///
///
public PhartDiagramRelationDto() { }
///
///
///
public PhartDiagramRelationDto(Model.PhartDiagramRelation rhs)
{
this.ID = rhs.ID;
this.DiagramID = rhs.DiagramID;
this.ObjectType = rhs.ObjectType;
this.ObjectID = rhs.ObjectID;
this.OtherName = rhs.OtherName;
this.Importance = rhs.Importance;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 标识
///
public long ID { get; set; }
///
/// 图表标识
///
public long DiagramID { get; set; }
///
/// 对象类型
///
public string ObjectType { get; set; }
///
/// 对象标识
///
public long ObjectID { get; set; }
///
/// 别名
///
public string OtherName { get; set; }
///
/// 重要度
///
public int Importance { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}