namespace CompressorXN_Model.ViewModel.Response
{
public class ParaPointVM
{
public string ProductTypeName { get; set; }
///
/// 参数类型
///
public string ParaType { get; set; }
///
/// 参数名称
///
public string ParaName { get; set; }
///
/// 目标值
///
public decimal? TargetVal { get; set; }
///
/// 目标值地址
///
public string TargetAddress { get; set; }
///
/// 下限值
///
public decimal? MinVal { get; set; }
///
/// 下限值地址
///
public string MinAddress { get; set; }
///
/// 上限值
///
public decimal? MaxVal { get; set; }
///
/// 上限值地址
///
public string MaxAddress { get; set; }
///
/// 是否检测
///
public bool IsCheck { get; set; }
///
/// 是否检查地址
///
public string CheckAddress { get; set; }
}
}