44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
///
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.Output.DB.SensusOracle
|
|
{
|
|
public class Auftrag
|
|
{
|
|
public string AuftragsNummer; /// Production order
|
|
public int SollStueck; /// Targer pieces count
|
|
public string VariantenCode; /// Spec
|
|
public int EsrsteZaehlerNr; /// First S/N
|
|
public string Prefix; /// S/N prefix
|
|
public string Suffix; /// S/N suffix
|
|
public int Zaehlwerk; /// SAP number of the counter
|
|
public DateTime Created;
|
|
public DateTime DueDate;
|
|
public string Remark;
|
|
public int FirstSerialNr;
|
|
public int LastSerialNr;
|
|
public int CurrentSerialNr;
|
|
public int FirstRadioAddress;
|
|
public int LastRadioAddress;
|
|
public string RadioAddressPrefix;
|
|
public string RadioAddressSuffix;
|
|
public int CurrentRadioAddress;
|
|
|
|
public Auftrag()
|
|
{
|
|
Prefix = string.Empty;
|
|
Suffix = string.Empty;
|
|
Remark = string.Empty;
|
|
RadioAddressPrefix = string.Empty;
|
|
RadioAddressSuffix = string.Empty;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} [{1}] {2}", AuftragsNummer, SollStueck, VariantenCode);
|
|
}
|
|
}
|
|
}
|