20220510_191_upperpc/AutomaticApp/Models/ADCPDetails.cs

19 lines
371 B
C#
Raw Permalink Normal View History

2023-07-27 02:57:34 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomaticApp.TestModels
{
public class ADCPDetails
{
/// <summary>
/// 海流计详细信息输出
/// </summary>
public string Name { get; set; }
public string OrderNum { get; set; }
}
}