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