using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NTADCP { public class ADCP { /// /// 表面流速 /// public float SurfaceVelocity { get; set; } /// /// 流速方向 0- 顺水 1 -迎水 /// public float FlowDirection { get; set; } = 3; } }