20240301_JSEQ_upperpc/JiangsuEarthquakeNow/JiangsuEarthquake/Models/EarthQuakeParaSetModel.cs
XuMin 3b6c570800 1 经过电控腔测试和升压站测试;
2 解决了后一个通信连接会影响前一个通信连接的问题;
3 测试过程中存在的问题修改;
2024-09-03 16:30:34 +08:00

155 lines
3.2 KiB
C#

using JiangsuEarthquake.DataAccess;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiangsuEarthquake.Models
{
public class EarthQuakeParaSetModel : ParameterModel
{
private int seisID;
/// <summary>
/// 地震仪编号
/// </summary>
public int SeisID
{
get { return seisID; }
set { seisID = value; this.DoNotify(); }
}
private int sationNo;
/// <summary>
/// 台站号
/// </summary>
public int StationNo
{
get { return sationNo; }
set { sationNo = value; this.DoNotify(); }
}
private string stationName;
/// <summary>
/// 台站名称
/// </summary>
public string StationName
{
get { return stationName; }
set { stationName = value; this.DoNotify(); }
}
private string stationShortName;
/// <summary>
/// 台站缩写
/// </summary>
public string StationShortName
{
get { return stationShortName; }
set { stationShortName = value; this.DoNotify(); }
}
private int earthQuakeCount;
/// <summary>
/// 地震计总数
/// </summary>
public int EarthQuakeCount
{
get { return earthQuakeCount; }
set { earthQuakeCount = value; this.DoNotify(); }
}
private int channelsNo;
/// <summary>
/// 总通道数
/// </summary>
public int ChannelsNo
{
get { return channelsNo; }
set { channelsNo = value; this.DoNotify(); }
}
private float wd;
/// <summary>
/// 纬度
/// </summary>
public float WD
{
get { return wd; }
set { wd = value; this.DoNotify(); }
}
private float jd;
/// <summary>
/// 经度
/// </summary>
public float JD
{
get { return jd; }
set { jd = value; this.DoNotify(); }
}
private int gaoCheng;
/// <summary>
/// 高程
/// </summary>
public int GaoCheng
{
get { return gaoCheng; }
set { gaoCheng = value; this.DoNotify(); }
}
private string startTime;
/// <summary>
/// 启动日期
/// </summary>
public string StartTime
{
get { return startTime; }
set { startTime = value; this.DoNotify(); }
}
private string stationid;
/// <summary>
/// 台网标示
/// </summary>
public string Station_Id
{
get { return stationid; }
set { stationid = value; this.DoNotify(); }
}
private string software_version;
/// <summary>
/// 软件版本
/// </summary>
public string Software_Version
{
get { return software_version; }
set { software_version = value; this.DoNotify(); }
}
}
}