89 lines
2.0 KiB
C#
89 lines
2.0 KiB
C#
namespace LaaProduction.Data.Omni.Models
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public class InspectionOrder
|
|
{
|
|
public Int16 Id { get; set; }
|
|
|
|
public Int32? Orderno { get; set; }
|
|
|
|
public Int16? Posno { get; set; }
|
|
|
|
public Int32? Pono { get; set; }
|
|
|
|
public Int32 IdentNr { get; set; }
|
|
|
|
public String Name { get; set; }
|
|
|
|
public String Variant { get; set; }
|
|
|
|
public String SizeName { 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 LeakAlarmTime { get; set; }
|
|
|
|
public Single HighFlowAlarmGPM { get; set; }
|
|
|
|
public Int64 HighFlowAlarmTime { get; set; }
|
|
|
|
public Single ReverseFlowAlarmGPM { get; set; }
|
|
|
|
public Int64 ReverseFlowAlarmTime { get; set; }
|
|
|
|
public String PartNr { get; set; }
|
|
|
|
public String Configiguration { get; set; }
|
|
|
|
public String DescriptionL1 { get; set; }
|
|
|
|
public String DescriptionL2 { get; set; }
|
|
|
|
public String DescriptionL3 { get; set; }
|
|
|
|
public String TestClass { get; set; }
|
|
|
|
public List<TestPoint> TestPoints { get; set; }
|
|
}
|
|
}
|