CordonelStatus: - CrdonelRequirements: data types to CLR

This commit is contained in:
Thomas Wiedebusch
2024-05-22 10:16:45 +02:00
parent 9e709a1cf6
commit 7aae99a8fb
@@ -4,50 +4,50 @@
public class CordonelRequirements
{
public int? Id { get; set; }
public Int32? Id { get; set; }
public int? Nr { get; set; }
public Int32? Nr { get; set; }
public int? StandardId { get; set; }
public Int32? StandardId { get; set; }
public int? StandardNr { get; set; }
public Int32? StandardNr { get; set; }
public int? IdentNr { get; set; }
public Int32? IdentNr { get; set; }
public string Key { get; set; }
public String Key { get; set; }
public string Region { get; set; }
public String Region { get; set; }
public string MeterSize { get; set; }
public String MeterSize { get; set; }
public int? ProductionOrderNr { get; set; }
public Int32? ProductionOrderNr { get; set; }
public int? PcbId { get; set; }
public Int32? PcbId { get; set; }
public string FwVersion { get; set; }
public String FwVersion { get; set; }
public string LutVersion { get; set; }
public String LutVersion { get; set; }
public double? RequiredLifeTimeYearsAssembly { get; set; }
public Double? RequiredLifeTimeYearsAssembly { get; set; }
public double? RequiredLifeTimeYearsShipping { get; set; }
public Double? RequiredLifeTimeYearsShipping { get; set; }
public double? MaxDrainedBatteryLoadPercentAssembly { get; set; }
public Double? MaxDrainedBatteryLoadPercentAssembly { get; set; }
public double? MaxDrainedBatteryLoadPercentShipping { get; set; }
public Double? MaxDrainedBatteryLoadPercentShipping { get; set; }
public double? MaxStorageMonths { get; set; }
public Double? MaxStorageMonths { get; set; }
public double? MaxStorageMonthsBigOrders { get; set; }
public Double? MaxStorageMonthsBigOrders { get; set; }
public DateTime? Timestamp { get; set; }
public string CreatedBy { get; set; }
public String CreatedBy { get; set; }
public string Comment { get; set; }
public String Comment { get; set; }
public bool? IsSpecialActive { get; set; }
public Boolean? IsSpecialActive { get; set; }
public bool? IsStandardActive { get; set; }
public Boolean? IsStandardActive { get; set; }
}
}