using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IStation.Bimface;
namespace IStation.Model.Bimface
{
///
/// 信号面板位置
///
public class MonitorPanel: CustomLayer
{
///
/// 位置类型
///
public eLocationType LocationType { get; set; }
///
/// 位置对象ID(LocationType为总管时,不赋值)
///
public long LocationObjectID { get; set; }
///
/// 面板方向
///
public ePanelDirection Direction
{
get { return _direction; }
set { _direction = value; }
}
private ePanelDirection _direction = ePanelDirection.Top;
///
/// 监测值是否显示
///
public bool ValuesVisible
{
get { return _valuesVisible; }
set { _valuesVisible = value; }
}
private bool _valuesVisible = true;
///
/// Bimface世界坐标
///
public CoordinateDouble3d WorldPostion { get; set; }
///
/// 测点标识列表
///
public List MonitorPointIds { get; set; }
}
}