update 20260303
This commit is contained in:
@@ -3,6 +3,7 @@ using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Security.Permissions;
|
||||
using System.Security.Policy;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
@@ -21,6 +22,7 @@ namespace Model
|
||||
public string VersandOption { get => _VersandOption; set => _VersandOption =value?? "B1_POST"; }
|
||||
private string _GASAdresse = "";
|
||||
public string GASAdresse { get =>_GASAdresse; set => _GASAdresse = value??""; }
|
||||
public string GASCouvert { get; set; }
|
||||
public string ResultOnDoc { get; set; }
|
||||
public string ResultSender { get; set; }
|
||||
public string ResultFileType { get; set; }
|
||||
@@ -45,7 +47,9 @@ namespace Model
|
||||
public string Dokumentdatum { get; set; }
|
||||
public string Bezeichnung { get; set; }
|
||||
|
||||
public string Herkunftsapplikation { get; set; }
|
||||
private string _Herkunftsapplikation = "";
|
||||
public string Herkunftsapplikation
|
||||
{ get => _Herkunftsapplikation; set => _Herkunftsapplikation = value ?? ""; }
|
||||
public string OnDocSignCheck { get; set; }
|
||||
private string _Reference = "";
|
||||
public string Reference { get => _Reference; set => _Reference = value ?? ""; }
|
||||
@@ -161,4 +165,36 @@ namespace Model
|
||||
//{
|
||||
// public List<docitem> CLMDocItem { get; set; }
|
||||
//}
|
||||
public class ArchiveDoc
|
||||
{
|
||||
public string _DokumentID = "";
|
||||
public string DokumentID { get => _DokumentID; set => _DokumentID = value ?? ""; }
|
||||
private string _DokumenttypNr = "";
|
||||
public string DokumenttypNr { get => _DokumenttypNr; set => _DokumenttypNr = value ?? ""; }
|
||||
|
||||
public string _PartnerNr = "";
|
||||
public string PartnerNr { get => _PartnerNr; set => _PartnerNr = value ?? ""; }
|
||||
private string _Status = "";
|
||||
public string Status { get => _Status; set => _Status = value ?? ""; }
|
||||
private string _Herkunftsapplikation = "";
|
||||
public string Herkunftsapplikation { get => _Herkunftsapplikation; set => _Herkunftsapplikation = value ?? ""; }
|
||||
private string _Reference = "";
|
||||
public string Reference { get => _Reference; set => _Reference = value ?? ""; }
|
||||
private string _DokumentDatum = "";
|
||||
public string DokumentDatum { get => _DokumentDatum; set => _DokumentDatum = value ?? ""; }
|
||||
private string _TGCreatedBy = "";
|
||||
private string _Bezeichung = "";
|
||||
public string Bezeichnung { get => _Bezeichung; set => _Bezeichung = value ?? ""; }
|
||||
public string TGCreatedBy { get => _TGCreatedBy; set => _TGCreatedBy = value ?? ""; }
|
||||
|
||||
private string _TGResponsible = "";
|
||||
public string TGResponsible { get => _TGResponsible; set => _TGResponsible = value ?? ""; }
|
||||
private string _Dokument = "";
|
||||
public string Dokument { get => _Dokument; set => _Dokument = value ?? ""; }
|
||||
|
||||
private string _DokumentType = "";
|
||||
public string DokumentType { get => _DokumentType; set => _DokumentType = value ?? "PDF"; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user