Update 20241028

This commit is contained in:
Stefan Hutter
2024-10-28 20:22:18 +01:00
parent 5bea1d4535
commit 6da124508d
76 changed files with 2267 additions and 32 deletions

View File

@@ -46,6 +46,7 @@
<Compile Include="clsDocData.cs" />
<Compile Include="clsdocgendata.cs" />
<Compile Include="clsdok.cs" />
<Compile Include="clsSerienbrief.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="VersandstrassePaket.cs" />
</ItemGroup>

Binary file not shown.

Binary file not shown.

46
Model/clsSerienbrief.cs Normal file
View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class serienbrief
{
public int serienbriefnr { get; set; } = 0;
public string bezeichnung { get; set; } = "";
public int verantwortlich { get; set; } = 0;
public int postzustellung { get; set; } = 0;
public DateTime dokumentdatum { get; set; } = DateTime.Now;
public int zustaendig { get; set; } = 0;
public int unterschriftlinks { get; set; } = 0;
public int unterschriftrechts { get; set; } = 0;
public int team { get; set; } = 0;
public DateTime archivdatum { get; set; } = DateTime.Now;
public DateTime termin { get; set; } = DateTime.Now;
public string bemerkung { get; set; } = "";
public DateTime erstellt_am { get; set; } = DateTime.Now;
public DateTime mutiert_am { get; set; } = DateTime.Now;
public int mutierer { get; set; } = 0;
public bool aktiv { get; set; } = true;
public int status { get; set; } = 0;
public int dokumenttypnr { get; set; } = 0;
public int windowwidth { get; set; } = 0;
public int windowheight { get; set; } = 0;
public int treewidth { get; set; } = 0;
public int fehlerhaft { get; set; } = 0;
public int inBearbeitung { get; set; } = 0;
public int erstellt { get; set; } = 0;
public int gedruckt { get; set; } = 0;
public int bestaetigt { get; set; } = 0;
public int ausgeloest { get; set; } = 0;
public int bldossier { get; set; } = 0;
}
}

View File

@@ -1 +1 @@
57ab2ec78deebc61353d3ea8926b1991db41a4c8d288afce107b55baa70cb5fa
360cbe71b183e2000d2a6e9a40a1eec981199b034a930103ec6ff55518a1d358

Binary file not shown.

Binary file not shown.