155 lines
3.2 KiB
C#
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(); }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|