20211010_CZPM_upperpc/垂直剖面动态观测系统/Model/Conbox_sensor_adcpModel.cs

72 lines
1.8 KiB
C#
Raw Normal View History

2023-07-27 03:01:29 +00:00
using LiveCharts;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using .Common;
namespace .Model
{
public class Conbox_sensor_adcpModel : NotifyBase
{
private DateTime _datetime_Sensor;
public DateTime datetime_Sensor
{
get { return _datetime_Sensor; }
set { _datetime_Sensor = value; this.DoNotify(); }
}
private List<string> _datetime_List = new List<string>();
public List<string> Datetime_List
{
get { return _datetime_List; }
set { _datetime_List = value; this.DoNotify(); }
}
//压力
private float _adcp_Pre;
public float Adcp_Pre
{
get { return _adcp_Pre; }
set { _adcp_Pre = value; this.DoNotify(); }
}
private ChartValues<float> _adcp_Pre_List = new ChartValues<float>();
public ChartValues<float> Adcp_Pre_List
{
get { return _adcp_Pre_List; }
set { _adcp_Pre_List = value; this.DoNotify(); }
}
//压缩比
private float _adcp_Ysb;
public float Adcp_Ysb
{
get { return _adcp_Ysb; }
set { _adcp_Ysb = value; this.DoNotify(); }
}
private ChartValues<float> _adcp_Ysb_List = new ChartValues<float>();
public ChartValues<float> Adcp_Ysb_List
{
get { return _adcp_Ysb_List; }
set { _adcp_Ysb_List = value; this.DoNotify(); }
}
//流速流向
private string _adcp_VD;
public string Adcp_VD
{
get { return _adcp_VD; }
set { _adcp_VD = value; this.DoNotify(); }
}
}
}