V1.2
This commit is contained in:
@@ -41,7 +41,7 @@ namespace CapMachine.Model
|
||||
/// 维持时间
|
||||
/// </summary>
|
||||
[Column(Name = "KeepTime")]
|
||||
public double KeepTime { get; set; }
|
||||
public int KeepTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 配置值类型
|
||||
@@ -56,7 +56,54 @@ namespace CapMachine.Model
|
||||
[Column(Name = "Constant")]
|
||||
public double Constant { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// ///////////////////////////////////////////跟随速度小步骤的常量数据///////////////////////////////////////////////////////
|
||||
/// </summary>
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 输出锁定(0/1)
|
||||
/// 跟随速度步骤的常值数据
|
||||
/// </summary>
|
||||
[Column(Name = "OutLock")]
|
||||
public bool OutLock { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///参数编号(1~16)
|
||||
/// 跟随速度步骤的常值数据
|
||||
/// </summary>
|
||||
[Column(Name = "ParNo")]
|
||||
public int ParNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
///EV(1~4)
|
||||
/// 跟随速度步骤的常值数据
|
||||
/// </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; }
|
||||
|
||||
|
||||
[Column(ServerTime = DateTimeKind.Local, CanUpdate = false)]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user