144 lines
3.0 KiB
C#
144 lines
3.0 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 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 short earthQuakeCount;
|
|
|
|
/// <summary>
|
|
/// 地震计总数
|
|
/// </summary>
|
|
public short EarthQuakeCount
|
|
{
|
|
get { return earthQuakeCount; }
|
|
set { earthQuakeCount = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private short channelsNo;
|
|
|
|
/// <summary>
|
|
/// 总通道数
|
|
/// </summary>
|
|
public short ChannelsNo
|
|
{
|
|
get { return channelsNo; }
|
|
set { channelsNo = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private int wd;
|
|
|
|
/// <summary>
|
|
/// 纬度
|
|
/// </summary>
|
|
public int WD
|
|
{
|
|
get { return wd; }
|
|
set { wd = value; this.DoNotify(); }
|
|
}
|
|
|
|
|
|
private int jd;
|
|
|
|
/// <summary>
|
|
/// 经度
|
|
/// </summary>
|
|
public int 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(); }
|
|
}
|
|
}
|
|
}
|