verwahrung_foto old commit

This commit is contained in:
2025-10-03 14:52:17 +02:00
parent 9f2ff2e6a2
commit 08d76bf36f
3 changed files with 81 additions and 9 deletions

View File

@@ -0,0 +1,38 @@
Imports System.ComponentModel.DataAnnotations
Imports System.ComponentModel.DataAnnotations.Schema
Namespace Models
<Table("Aviso")>
Public Class Aviso
<Key>
Public Property AvisoID As Integer
Public Property Status As Integer
<MaxLength(50)>
Public Property LKW_Nr As String
Public Property Ankunft As DateTime?
Public Property Dauer As Integer
<MaxLength(100)>
Public Property LetzterMitarbeiter As String
<MaxLength(200)>
Public Property WeiterleitungTextTV As String
Public Property LKW_fertig As Boolean
<MaxLength(100)>
Public Property Buero As String
<MaxLength(200)>
Public Property AvisoTVHinweis As String
<MaxLength(50)>
Public Property ImEx As String
Public Property ZOLLDigitalEingereicht As Boolean
End Class
End Namespace