using JiangsuEarthquake.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiangsuEarthquake.Models { public class ParameterModel: NotifyBase { private int stationId; /// /// 站点ID /// public int StationID { get { return stationId; } set { stationId = value; } } private int index; /// /// ID /// public int Index { get { return index; } set { index = value; } } private DateTime recordTime; /// /// 数据记录时间 /// public DateTime RecordTime { get { return recordTime; } set { recordTime = value; } } private DateTime dataTime; /// /// 数据上报时间 /// public DateTime DataTime { get { return dataTime; } set { dataTime = value; } } } }