Hermes

Aggrosoft\WAWIBundle\Entity\Hermes
3
Columns
1
Relations
4
Properties

Relationships

Click entity to navigate
erDiagram
    Hermes {
                string id PK
                string orderNo
                string filename
                    }
                Hermes ||--|| Offer : "offer"
        Offer {
        int id PK
    }
                    

Metadaten

Tabelle hermes
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
orderNo orderNo string(255)
{{ entity.orderNo }}
filename filename string(255)
{{ entity.filename }}

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
orderNo DB
read write
{{ entity.orderNo }}
getOrderNo()
setOrderNo()
string
filename DB
read write
{{ entity.filename }}
getFilename()
setFilename()
string
offer DB
read write
{{ entity.offer }}
getOffer()
setOffer()
\Aggrosoft\WAWIBundle\Entity\Offer
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
offer OneToOne Offer - - - {{ entity.offer }}
Keine Indexes definiert