fg_yida_2/YiDa_WinForm/Model/TcDataModel.cs

20 lines
421 B
C#
Raw Normal View History

2026-01-21 19:31:27 +08:00
namespace YiDa_WinForm.Model
{
public class TcDataModel
{
/// <summary>
/// 时间戳(毫秒级)
/// </summary>
public long time { get; set; }
public TcParamsModel @params { get; set; }
}
public class TcParamsModel
{
// 测量值
public string PV { get; set; }
// 设定值
public string SV { get; set; }
}
}