更改了报警地址
复位地址 数据记录进行了校验
This commit is contained in:
84
CapMachine.Model/MeterConfig/MeterPTCPw2.cs
Normal file
84
CapMachine.Model/MeterConfig/MeterPTCPw2.cs
Normal file
@@ -0,0 +1,84 @@
|
||||
using FreeSql.DataAnnotations;
|
||||
|
||||
namespace CapMachine.Model.MeterConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// PTC功率 表设置
|
||||
/// </summary>
|
||||
[Table(Name = "MeterPTCPw2")]
|
||||
public class MeterPTCPw2
|
||||
{
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[Column(IsPrimary = true, IsIdentity = true)]
|
||||
public long Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 程序步骤序号
|
||||
/// </summary>
|
||||
[Column(Name = "StepNo")]
|
||||
public int StepNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 开始值
|
||||
/// </summary>
|
||||
[Column(Name = "StartValue")]
|
||||
public double StartValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结束值
|
||||
/// </summary>
|
||||
[Column(Name = "EndValue")]
|
||||
public double EndValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 维持时间
|
||||
/// </summary>
|
||||
[Column(Name = "KeepTime")]
|
||||
public int KeepTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 配置值类型
|
||||
/// </summary>
|
||||
[Column(MapType = typeof(int))]
|
||||
public ConfigValueType ValueType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 常值
|
||||
/// 在ValueType为常值时会使用
|
||||
/// </summary>
|
||||
[Column(Name = "Constant")]
|
||||
public double Constant { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// PID No
|
||||
/// </summary>
|
||||
[Column(Name = "PIDNo")]
|
||||
public int PIDNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 限幅 No
|
||||
/// </summary>
|
||||
[Column(Name = "LimitNo")]
|
||||
public int LimitNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 报警 No
|
||||
/// </summary>
|
||||
[Column(Name = "AlarmNo")]
|
||||
public int AlarmNo { get; set; }
|
||||
|
||||
|
||||
[Column(ServerTime = DateTimeKind.Local, CanUpdate = false)]
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ///////////////////////////////////////////导航属性///////////////////////////////////////////////////////
|
||||
/// </summary>
|
||||
|
||||
public long ProStepId { get; set; }
|
||||
public ProStep? ProStep { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user