refactor: restructure host message handling by implementing specialized handlers and updating database schema documentation
This commit is contained in:
BIN
03_Realisierung/Datenbank Tabellen/.DS_Store
vendored
BIN
03_Realisierung/Datenbank Tabellen/.DS_Store
vendored
Binary file not shown.
@@ -1 +1,6 @@
|
||||
## Aufbau Tabelle Aisle in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
Aisle(StorageArea [PK] string not_null, AisleName [PK] string not_null, Type string not_null, IsReady bool not_null, IsBlocked bool not_null, VerticalPosition int not_null, HorizontalPosition int not_null, Depth int not_null, MaintenanceLevel int not_null, Description string null, HandlingUnitType string not_null, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)
|
||||
@@ -1 +1,6 @@
|
||||
## Aufbau Tabelle Destination in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
Destination(Name [PK] string not_null, LeNo [FK] string, Status string not_null, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)
|
||||
@@ -1 +1,6 @@
|
||||
## Aufbau Tabelle Le in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
Le(LeNo [PK] string not_null, Type [FK] string not_null, AbcArea string, Status string not_null, Subdivision string not_null, IsEmpty bool not_null, AisleName [FK] string, StorageArea [FK] string, PrefferedStorageArea string, LocationId [FK] string, LocationDepth int, HasErrorTransportOrder bool not_null, HasErrorLabeling bool not_null, HasErrorNoRead bool not_null, HasErrorHeight bool not_null, HasErrorWidth bool not_null, HasErrorWeight bool not_null, Height int, Length int, Width int, Weight int, WeightMin int, WeightMax int, LastWhere string, LastWhen datetime, LastMovement string, Username string, ArticleTag string, IsHulnOldSystem bool, L8OrderCreated datetime, L8OrderFinished datetime, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)
|
||||
@@ -1 +1,6 @@
|
||||
## Aufbau Tabelle LeType in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
LeType(Name [PK] string not_null, Depth int not_null, Width int not_null, Height int not_null, TypeSrc int not_null, TareWeight int not_null, TypeConveyor string, MaxWeight int not_null, TypePrefix string, TypeRange string, UseCartonTray bool not_null, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)
|
||||
@@ -1 +1,6 @@
|
||||
## Aufbau Tabelle Location in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
Location(LocationId [PK] string not_null, StorageArea [PK] [FK] string not_null, AisleName [PK] [FK] string not_null SideSrc int not_null, HorizontalWay int not_null, VerticalWay int not_null, Position int not_null, Field string, DepthMax int not_null, DepthFree int not_null, Height int not_null, IsLocked bool not_null, AbcArea string, Type string not_null, Priority int not_null, Zone int not_null, LastLe string, Username string, IsLocationTestActive bool not_null, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)
|
||||
6
03_Realisierung/Datenbank Tabellen/ResourceSettings.md
Normal file
6
03_Realisierung/Datenbank Tabellen/ResourceSettings.md
Normal file
@@ -0,0 +1,6 @@
|
||||
## Aufbau Tabelle OrdersMiniload in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
ResourceSettings(Name [PK] string not_null, Type string, Capacity, int not_null, Overload int not_null, Creator string, Created datetime, CcuVersion int, Timestamp datetime, Process string)
|
||||
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 23 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 103 KiB |
@@ -1 +1,6 @@
|
||||
## Aufbau Tabelle StorageDevice in Relationenschreibweise
|
||||
|
||||
### Schema: TabellenName:(AttributName DatenTyp Restriktion)
|
||||
### Schlüssel: PK: Primärschlüssel, FK: Fremdschlüssel
|
||||
|
||||
StorageDevice(StorageArea [PK] [FK] string not_null, DeviceName [PK] string not_null, AisleName [FK], Type string not_null, Status string not_null, OperationMode string not_null, ClearingIncrement int not_null, HasCriticalFault bool not_null, HasCamera bool not_null, IsLockedinAisle bool not_null, Description string, Creator string not_null, Created datetime not_null, CcuVersion int not_null, Timestamp datetime not_null, Process string not_null)
|
||||
Reference in New Issue
Block a user