laatzen/Common/Ui/Common.UI.VFM/Models/OmniValuesModel.cs
2024-08-09 15:56:53 +02:00

118 lines
2.8 KiB
C#

namespace Common.UI.VFM.Models
{
using System;
using Common.Hardware.WaterMeter.OmniPlus.Features;
public class OmniValuesModel
{
public Int32 Orderno { get; set; }
public Int16 Positionno { get; set; }
public Int32 ProductionOrderno { get; set; }
public Int32 OrderIdentno { get; set; }
public Int32 Count { get; set; }
public Int32 Boxno { get; set; }
public Int32 Serialno { get; set; }
public String DbCustId { get; set; }
public Int32 FactId { get; set; }
public String EheadPcb { get; set; }
public String MeterPcb { get; set; }
public Byte ProductionStatus { get; set; }
public String Partno { get; set; }
public String DescriptionL1 { get; set; }
public String DescriptionL2 { get; set; }
public String Variant { get; set; }
public String SQLErrors { get; set; }
public Double MaxGPM { get; set; }
public Double MaxACC { get; set; }
public Double MidGPM { get; set; }
public Double MidACC { get; set; }
public Double MinGPM { get; set; }
public Double MinACC { get; set; }
public DateTime TestDate { get; set; }
public Boolean Succeeded { get; set; }
public Single CalibrationFactor { get; set; }
public Int32 TestRunId { get; set; }
public Byte Size { get; set; }
public Byte Range { get; set; }
public Byte Direction { get; set; }
public Byte IntPart { get; set; }
public Int32 Fraction { get; set; }
public Int16 Crf { get; set; }
public Byte Ppr { get; set; }
public Byte MeterUnits { get; set; }
public Byte FlowUnits { get; set; }
public Byte FlowRate { get; set; }
public Byte PulseWeight { get; set; }
public Byte PulseWidth { get; set; }
public Byte PulseUpdate { get; set; }
public Byte AlarmPercistancePeriodDays { get; set; }
public Int32 DataLogIntervalMinutes { get; set; }
public Int16 NumberOfReadingDigits { get; set; }
public Int32 OptionalUniDirFields { get; set; }
public String ReadingPreset { get; set; }
public String DeviceID { get; set; }
public Single LeakAlarmGPM { get; set; }
public Int64 LeakAlarmHours { get; set; }
public Single HighFlowAlarmGPM { get; set; }
public Int64 HighFlowAlarmHours { get; set; }
public Single ReverseFlowAlarmGPM { get; set; }
public Int64 ReverseFlowAlarmMinutes { get; set; }
public UInt32 ManifacturingTime { get; set; }
public SystemParameters SystemParameters { get; set; }
public ConfigurationParameters ConfigurationParameters { get; set; }
}
}