RealStockJob

Aggrosoft\WAWIBundle\Entity\RealStockJob
3
Columns
2
Relations
5
Properties

Relationships

Click entity to navigate
erDiagram
    RealStockJob {
                string id PK
                datetime timestamp
                boolean deactivate
                    }
                RealStockJob }o--|| Product : "product"
        Product {
        int id PK
    }
                RealStockJob }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle realstockjob
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
timestamp timestamp datetime
{{ entity.timestamp }}
deactivate deactivate boolean
{{ entity.deactivate }}

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
timestamp DB
read write
{{ entity.timestamp }}
getTimestamp()
setTimestamp()
\DateTime
deactivate DB
read write
{{ entity.deactivate }}
getDeactivate()
setDeactivate()
boolean
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
client ManyToOne Client - - - {{ entity.client }}
Keine Indexes definiert