Class DeviceConfigParameterValue
Значение базы настроек устройства.
[Table("DeviceConfig")]
public class DeviceConfigParameterValue
- Inheritance
-
DeviceConfigParameterValue
- Inherited Members
- Extension Methods
Fields
ParamValue_Length
Длина поля ParamValue.
public const int ParamValue_Length = 50
Field Value
Properties
Date
Дата и время чтения настроек.
[Column("DateTime")]
public DateTime Date { get; set; }
Property Value
EquipmentId
Идентификатор устройства, у которого были считаны настройки.
public int EquipmentId { get; set; }
Property Value
ParamId
Идентификатор параметра.
public int ParamId { get; set; }
Property Value
ParamValue
Считанное значение параметра.
[StringLength(50)]
[Required(AllowEmptyStrings = true)]
public string ParamValue { get; set; }