2026-01-22 16:59:41 +08:00
|
|
|
|
|
|
|
|
|
|
namespace YiDa_WinForm.Model
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 全局静态类
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class SQLDataModel
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 时间戳(毫秒级)
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long time { get; set; }
|
|
|
|
|
|
public SQLParamModel @params { get; set; }
|
2026-01-23 16:25:57 +08:00
|
|
|
|
|
2026-01-22 16:59:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class SQLParamModel
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
// 测量值
|
|
|
|
|
|
public string PV { get; set; }
|
|
|
|
|
|
|
2026-01-29 20:29:12 +08:00
|
|
|
|
// 报废图片
|
2026-02-04 16:45:16 +08:00
|
|
|
|
public string BU { get; set; } = "报废图片未上传";
|
2026-01-23 16:25:57 +08:00
|
|
|
|
|
2026-01-29 20:29:12 +08:00
|
|
|
|
// 连杆测试
|
2026-02-04 16:45:16 +08:00
|
|
|
|
public string CR { get; set; } = "连杆强度测试图片未上传";
|
2026-01-22 16:59:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|