20211010_CZPM_upperpc/垂直剖面浮标临时测试软件v1.8/垂直剖面浮标临时测试软件/Model/Conbox_sensor_adcpModel.cs

20 lines
488 B
C#
Raw Normal View History

2023-07-27 03:01:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace .Model
{
public class Conbox_sensor_adcpModel
{
public DateTime datetime_Sensor { get; set; }
//压力
public int Adcp_Pre { get; set; } = 0;
//压缩比
public int Adcp_Ysb { get; set; } = 0;
//流速流向
public string Adcp_VD { get; set; } = "";
}
}