update 20250501
This commit is contained in:
70
OnDoc_Paketversand/VersandstrassePaket.cs
Normal file
70
OnDoc_Paketversand/VersandstrassePaket.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class Versandpaket
|
||||
{
|
||||
public string bezeichnung { get; set; }
|
||||
public string PaketNr { get; set; }
|
||||
public string Versandoption { get; set; }
|
||||
public string Mitteilung { get; set; }
|
||||
public string GAS { get; set; }
|
||||
public string GASAdresse { get; set; }
|
||||
public bool verified { get; set; } = false;
|
||||
public int partnernr { get; set; } = 0;
|
||||
public bool send_onbase_doc { get; set; }
|
||||
public string handle { get; set; } = "";
|
||||
|
||||
public string finaldoc { get; set; } = "";
|
||||
|
||||
public serienbrief sb { get; set; } = null;
|
||||
public bool isSerienbrief { get; set; } = false;
|
||||
|
||||
public int protokollid { get; set; } = 0;
|
||||
|
||||
public string bemerkung { get; set; } = "";
|
||||
public List<Versanddokument> Dokument { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class Versanddokument
|
||||
{
|
||||
public string DokumentID { get; set; }
|
||||
public string Bezeichnung { get; set; }
|
||||
public string Partnernr { get; set; }
|
||||
|
||||
public string dokument { get; set; } = "";
|
||||
|
||||
|
||||
|
||||
public int inteintragnr = 0;
|
||||
|
||||
public Versanddokument(string dokumentID, string bezeichnung, string partnernr)
|
||||
{
|
||||
DokumentID = dokumentID;
|
||||
Bezeichnung = bezeichnung;
|
||||
Partnernr = partnernr;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class OnBase_Attributes
|
||||
{
|
||||
public string Dokumenttyp { get; set; } = "TECH Versandstrasse SendDoc";
|
||||
public string BPNummer { get; set; } = "";
|
||||
public string DocumentHandle { get; set; } = "";
|
||||
public string DistributionOption { get; set; } = "";
|
||||
public string GASCouvert { get; set; } = "";
|
||||
public string Returnaddress { get; set; } = "";
|
||||
public string O2ODochandle { get; set; } = "";
|
||||
public string Status { get; set; } = "";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user