20240301_JSEQ_upperpc/JiangsuEarthquakeJM/JiangsuEarthquake/Models/ParameterModel.cs
春风过客 d7f51483a7 新增功能:
1 将地震仪数据读取功能单独成一个页面;
2024-05-13 18:51:05 +08:00

55 lines
1.1 KiB
C#

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;
/// <summary>
/// 站点ID
/// </summary>
public int StationID
{
get { return stationId; }
set { stationId = value; }
}
private int index;
/// <summary>
/// ID
/// </summary>
public int Index
{
get { return index; }
set { index = value; }
}
private DateTime recordTime;
/// <summary>
/// 数据记录时间
/// </summary>
public DateTime RecordTime
{
get { return recordTime; }
set { recordTime = value; }
}
private DateTime dataTime;
/// <summary>
/// 数据上报时间
/// </summary>
public DateTime DataTime
{
get { return dataTime; }
set { dataTime = value; }
}
}
}