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 _datetime_List = new List(); public List 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 _adcp_Pre_List = new ChartValues(); public ChartValues 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 _adcp_Ysb_List = new ChartValues(); public ChartValues 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(); } } } }