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;
///
/// 台站号
///
public int StationNo
{
get { return sationNo; }
set { sationNo = value; this.DoNotify(); }
}
private string stationName;
///
/// 台站名称
///
public string StationName
{
get { return stationName; }
set { stationName = value; this.DoNotify(); }
}
private string stationShortName;
///
/// 台站缩写
///
public string StationShortName
{
get { return stationShortName; }
set { stationShortName = value; this.DoNotify(); }
}
private short earthQuakeCount;
///
/// 地震计总数
///
public short EarthQuakeCount
{
get { return earthQuakeCount; }
set { earthQuakeCount = value; this.DoNotify(); }
}
private short channelsNo;
///
/// 总通道数
///
public short ChannelsNo
{
get { return channelsNo; }
set { channelsNo = value; this.DoNotify(); }
}
private int wd;
///
/// 纬度
///
public int WD
{
get { return wd; }
set { wd = value; this.DoNotify(); }
}
private int jd;
///
/// 经度
///
public int JD
{
get { return jd; }
set { jd = value; this.DoNotify(); }
}
private int gaoCheng;
///
/// 高程
///
public int GaoCheng
{
get { return gaoCheng; }
set { gaoCheng = value; this.DoNotify(); }
}
private string startTime;
///
/// 启动日期
///
public string StartTime
{
get { return startTime; }
set { startTime = value; this.DoNotify(); }
}
private string stationid;
///
/// 台网标示
///
public string Station_Id
{
get { return stationid; }
set { stationid = value; this.DoNotify(); }
}
private string software_version;
///
/// 软件版本
///
public string Software_Version
{
get { return software_version; }
set { software_version = value; this.DoNotify(); }
}
}
}