WarehouseBox

Aggrosoft\WAWIBundle\Entity\WarehouseBox
5
Columns
1
Relations
6
Properties

Relationships

Click entity to navigate
erDiagram
    WarehouseBox {
                string id PK
                boolean locked
                boolean default
                string status
                string type
                    }
                WarehouseBox }o--|| WarehouseStorageLocation : "location"
        WarehouseStorageLocation {
        int id PK
    }
                    

Metadaten

Tabelle warehousebox
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
locked locked boolean
{{ entity.locked }}
default default boolean
{{ entity.default }}
status status string(1)
{{ entity.status }}
type type string(10)
{{ entity.type }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
id DB
read
{{ entity.id }}
getId()
string
locked DB
read write
{{ entity.locked }}
getLocked()
setLocked()
boolean
default DB
read write
{{ entity.default }}
getDefault()
setDefault()
boolean
status DB
read write
{{ entity.status }}
getStatus()
setStatus()
string
type DB
read write
{{ entity.type }}
getType()
setType()
string
location DB
read write
{{ entity.location }}
getLocation()
setLocation()
\Aggrosoft\WAWIBundle\Entity\WarehouseStorageLocation
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
location ManyToOne WarehouseStorageLocation - boxes - {{ entity.location }}
Keine Indexes definiert