You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.2 KiB
C#

1 year ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FileDataUpload.Entity
{
/// <summary>
/// 设备参数值
/// </summary>
public class DeviceParametersValue
{
/// <summary>
/// 参数编号
/// </summary>
public string paramNumber { get; set; }
/// <summary>
/// 内容
/// </summary>
public string paramContent { get; set; }
/// <summary>
/// 测量值
/// </summary>
public double observedValue { get; set; }
/// <summary>
/// 名义值
/// </summary>
public double nominalValue { get; set; }
/// <summary>
/// 超差值
/// </summary>
public double overproofValue { get; set; }
/// <summary>
/// 上公差
/// </summary>
public double upperDeviation { get; set; }
/// <summary>
/// 下公差
/// </summary>
public double lowerDeviation { get; set; }
/// <summary>
/// 状态
/// </summary>
public string state { get; set; }
}
}