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