Table of Contents

Class DeviceConfigParameterValue

Namespace
Lers.Models
Assembly
Lers.Models.dll

Значение базы настроек устройства.

[Table("DeviceConfig")]
public class DeviceConfigParameterValue
Inheritance
DeviceConfigParameterValue
Inherited Members
Extension Methods

Fields

ParamValue_Length

Длина поля ParamValue.

public const int ParamValue_Length = 50

Field Value

int

Properties

Date

Дата и время чтения настроек.

[Column("DateTime")]
public DateTime Date { get; set; }

Property Value

DateTime

EquipmentId

Идентификатор устройства, у которого были считаны настройки.

public int EquipmentId { get; set; }

Property Value

int

ParamId

Идентификатор параметра.

public int ParamId { get; set; }

Property Value

int

ParamValue

Считанное значение параметра.

[StringLength(50)]
[Required(AllowEmptyStrings = true)]
public string ParamValue { get; set; }

Property Value

string