Tag模型

This commit is contained in:
2024-09-27 17:48:18 +08:00
parent 6bf0d5d7ba
commit 684973e6b7
19 changed files with 7723 additions and 145 deletions

View File

@@ -157,5 +157,48 @@ namespace CapMachine.Model.QuickMeterConfig
///// </summary>
//[Column(Name = "xxxx")]
//public double xxxx { get; set; }
/// <summary>
/// 输出锁定0/1
/// 跟随速度步骤的常值数据
/// </summary>
[Column(Name = "OutLock")]
public bool OutLock { get; set; }
/// <summary>
///参数编号116
/// 跟随速度步骤的常值数据
/// </summary>
[Column(Name = "ParNo")]
public int ParNo { get; set; }
/// <summary>
///EV14
/// 跟随速度步骤的常值数据
/// </summary>
[Column(Name = "Ev")]
public int Ev { get; set; }
// <summary>
/// 压缩机使能0/1
/// 跟随速度步骤的常值数据
/// </summary>
[Column(Name = "CapEnable")]
public bool CapEnable { get; set; }
// <summary>
/// 吸排气阀0/1
/// 跟随速度步骤的常值数据
/// </summary>
[Column(Name = "InhExhValve")]
public bool InhExhValve { get; set; }
// <summary>
/// 加热器使能0/1
/// 跟随速度步骤的常值数据
/// </summary>
[Column(Name = "HeatEnable")]
public bool HeatEnable { get; set; }
}
}