39 lines
916 B
VB.net
39 lines
916 B
VB.net
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
|