20240301_JSEQ_upperpc/JiangsuEarthquake_test/JiangsuEarthquake/Models/BaseStationGestureModel.cs
XuMin 748090f317 修改部分:
1 地震仪告警记录中故障次数隐藏;电力载波机和光电交换机的供电状态隐藏;
2 除漏水和保护板事件的数据按照浮点数解析,别的按照整数解析;
3 解决TCP Server和Client存在的问题,包括无法监测到客户端连接,无法监测到服务端断开等问题;
2024-08-13 14:35:33 +08:00

83 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiangsuEarthquake.Models
{
public class BaseStationGestureModel : ParameterModel
{
private float rollAngle;
/// <summary>
/// 横滚角
/// </summary>
public float RollAngle
{
get { return rollAngle; }
set { rollAngle = value; this.DoNotify(); }
}
private float pitchAngle;
/// <summary>
/// 俯仰角
/// </summary>
public float PitchAngle
{
get { return pitchAngle; }
set { pitchAngle = value; this.DoNotify(); }
}
private float headingAngle;
/// <summary>
/// 航向角
/// </summary>
public float HeadingAngle
{
get { return headingAngle; }
set { headingAngle = value; this.DoNotify(); }
}
private float pY_HG;
/// <summary>
/// 横滚角偏移度数
/// </summary>
public float PY_HG
{
get { return pY_HG; }
set { pY_HG = value; this.DoNotify(); }
}
private float pY_FY;
/// <summary>
/// 俯仰角度偏移度数
/// </summary>
public float PY_FY
{
get { return pY_FY; }
set { pY_FY = value; this.DoNotify(); }
}
private float pY_PH;
/// <summary>
/// 航向角偏移度数
/// </summary>
public float PY_PH
{
get { return pY_PH; }
set { pY_PH = value; this.DoNotify(); }
}
}
}