using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NEIntelligentControl2.Models.WinForms
{
public class UniformCodeInfo
{
///
/// 风机编号
///
public string WindturbineId { set; get; }
///
/// 风机型号
///
public string ModelId { set; get; }
///
/// 统一编码
///
public string UniformCode { set; get; }
///
/// 报警编号
///
public string WarningNum { set; get; }
///
/// 含义(标题)
///
public string Name { set; get; }
///
/// plc变量名
///
public string PlcName { set; get; }
///
/// 顺序
///
public int Index { set; get; }
///
/// 单位
///
public string Unit { set; get; }
///
/// 分组名称
///
public string PartName { set; get; }
///
/// 分组序号
///
public string PartIndex { set; get; }
///
/// 测点值
///
public string PointValue { set; get; }
///
/// 倍率
///
public double Ratio { get; set; } = 1;
}
}