2026-01-21 19:31:27 +08:00
|
|
|
|
|
|
|
|
|
|
namespace YiDa_WinForm.Model
|
2026-01-21 09:50:58 +08:00
|
|
|
|
{
|
2026-01-21 19:31:27 +08:00
|
|
|
|
public class ImmDataModel
|
2026-01-21 09:50:58 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 时间戳(毫秒级)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long time { get; set; }
|
2026-01-21 19:31:27 +08:00
|
|
|
|
public ImmParamsModel @params { get; set; }
|
2026-01-21 09:50:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-01-21 19:31:27 +08:00
|
|
|
|
public class ImmParamsModel
|
2026-01-21 09:50:58 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
public string Alarm { get; set; }
|
|
|
|
|
|
public string ProductCounts { get; set; }
|
|
|
|
|
|
public string CT { get; set; }
|
|
|
|
|
|
public string T1 { get; set; }
|
|
|
|
|
|
public string T2 { get; set; }
|
|
|
|
|
|
public string T3 { get; set; }
|
|
|
|
|
|
public string T4 { get; set; }
|
|
|
|
|
|
public string T5 { get; set; }
|
|
|
|
|
|
public string IP1 { get; set; }
|
|
|
|
|
|
public string IP2 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string IP3 { get; set; }
|
|
|
|
|
|
public string IP4 { get; set; }
|
|
|
|
|
|
public string IP5 { get; set; }
|
|
|
|
|
|
public string IV1 { get; set; }
|
|
|
|
|
|
public string IV2 { get; set; }
|
|
|
|
|
|
public string IV3 { get; set; }
|
|
|
|
|
|
public string IV4 { get; set; }
|
|
|
|
|
|
public string IV5 { get; set; }
|
|
|
|
|
|
public string ITT { get; set; }
|
|
|
|
|
|
public string PP1 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string PP2 { get; set; }
|
|
|
|
|
|
public string PP3 { get; set; }
|
|
|
|
|
|
public string PV1 { get; set; }
|
|
|
|
|
|
public string PV2 { get; set; }
|
|
|
|
|
|
public string PV3 { get; set; }
|
|
|
|
|
|
public string PT1 { get; set; }
|
|
|
|
|
|
public string PT2 { get; set; }
|
|
|
|
|
|
public string PT3 { get; set; }
|
|
|
|
|
|
public string CC { get; set; }
|
2026-01-21 19:31:27 +08:00
|
|
|
|
|
2026-01-21 09:50:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|