common/Service/MeterProcessState/Data/Pruefpunkte.cs
2026-04-23 17:50:07 +02:00

55 lines
2.0 KiB
C#

using System;
using System.Collections.Generic;
namespace Service.MeterProcessState.Data
{
public partial class Pruefpunkte : Ui.Web.IMeterDataCenter.Data.BaseEntity
{
public Int32 IdentNr { get; set; }
public String PruefklasseKz { get; set; }
public String Typ { get; set; }
public String Typzusatz { get; set; }
public Int32? Nennweite { get; set; }
public Int32? Temperatur { get; set; }
public Int32? Druck { get; set; }
public Double? Qn { get; set; }
public Double? Q1 { get; set; }
public Single? Fgo1 { get; set; }
public Single? Fgu1 { get; set; }
public Double? Q2 { get; set; }
public Single? Fgo2 { get; set; }
public Single? Fgu2 { get; set; }
public Double? Q3 { get; set; }
public Single? Fgo3 { get; set; }
public Single? Fgu3 { get; set; }
public Double? Q4 { get; set; }
public Single? Fgo4 { get; set; }
public Single? Fgu4 { get; set; }
public Double? Q5 { get; set; }
public Single? Fgo5 { get; set; }
public Single? Fgu5 { get; set; }
public Double? Q6 { get; set; }
public Single? Fgo6 { get; set; }
public Single? Fgu6 { get; set; }
public Double? Q7 { get; set; }
public Single? Fgo7 { get; set; }
public Single? Fgu7 { get; set; }
public Double? Q8 { get; set; }
public Single? Fgo8 { get; set; }
public Single? Fgu8 { get; set; }
public Double? Q9 { get; set; }
public Single? Fgo9 { get; set; }
public Single? Fgu9 { get; set; }
public Double? Q10 { get; set; }
public Single? Fgo10 { get; set; }
public Single? Fgu10 { get; set; }
public String Info { get; set; }
public String Fehlerstack { get; set; }
public Boolean? Erledigt { get; set; }
public DateTime? Datum { get; set; }
public String AenderungsInfo { get; set; }
}
}