20 lines
487 B
C#
20 lines
487 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace 垂直剖面浮标临时测试软件.Model
|
|
{
|
|
public class Lattarget_sensor_adcp150Model
|
|
{
|
|
public DateTime datetime { get; set; }
|
|
//压力
|
|
public int Adcp_Pre { get; set; } = 0;
|
|
//压缩比
|
|
public int Adcp_Ysb { get; set; } = 0;
|
|
//流速流向
|
|
public string Adcp_VD { get; set; } = "";
|
|
}
|
|
}
|