99 lines
2.0 KiB
C#
99 lines
2.0 KiB
C#
|
|
using JiangsuEarthquake.Common;
|
|||
|
|
using LiveCharts;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows.Media;
|
|||
|
|
|
|||
|
|
namespace JiangsuEarthquake.Models
|
|||
|
|
{
|
|||
|
|
public class BaseStationEnvirModel : ParameterModel
|
|||
|
|
{
|
|||
|
|
private float temperature;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接驳盒温度
|
|||
|
|
/// </summary>
|
|||
|
|
public float Temperature
|
|||
|
|
{
|
|||
|
|
get { return temperature; }
|
|||
|
|
set { temperature = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
private float humidity;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接驳盒湿度
|
|||
|
|
/// </summary>
|
|||
|
|
public float Humidity
|
|||
|
|
{
|
|||
|
|
get { return humidity; }
|
|||
|
|
set { humidity = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
private ImageSource leakage;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接驳盒漏水
|
|||
|
|
/// </summary>
|
|||
|
|
public ImageSource Leakage
|
|||
|
|
{
|
|||
|
|
get { return leakage; }
|
|||
|
|
set { leakage = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
private ImageSource hatch_State;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 舱门状态
|
|||
|
|
/// </summary>
|
|||
|
|
public ImageSource Hatch_State
|
|||
|
|
{
|
|||
|
|
get { return hatch_State; }
|
|||
|
|
set { hatch_State = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
private float attitudeX;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接驳盒姿态x轴
|
|||
|
|
/// </summary>
|
|||
|
|
public float AttitudeX
|
|||
|
|
{
|
|||
|
|
get { return attitudeX; }
|
|||
|
|
set { attitudeX = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
private float attitudeY;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接驳盒姿态y轴
|
|||
|
|
/// </summary>
|
|||
|
|
public float AttitudeY
|
|||
|
|
{
|
|||
|
|
get { return attitudeY; }
|
|||
|
|
set { attitudeY = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
private float attitudeZ;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 接驳盒姿态z轴
|
|||
|
|
/// </summary>
|
|||
|
|
public float AttitudeZ
|
|||
|
|
{
|
|||
|
|
get { return attitudeZ; }
|
|||
|
|
set { attitudeZ = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|