20240815_FJEQ_upperpc_seabed/FujianEarthquake_seabed_UI/FujianEarthquake/Models/ParameterModel.cs

59 lines
1.1 KiB
C#

using FujianEarthquake.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FujianEarthquake.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; }
}
}
}