using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.Models { public class HardwareReportArgs { /// 作用域标识(台架名称) public string Scope { get; set; } = string.Empty; /// 硬件指纹(物理设备唯一标识,如 "Tcp:192.168.1.1:5000") public string HardwareFingerprint { get; set; } = string.Empty; /// 方法名 public string MethodName { get; set; } = string.Empty; /// 采样值 public double Value { get; set; } /// 采样时间 public DateTime Time { get; set; } = DateTime.Now; } }