EAN

Aggrosoft\WAWIBundle\Entity\EAN
2
Columns
2
Relations
4
Properties

Relationships

Click entity to navigate
erDiagram
    EAN {
                string id PK
                string ean
                    }
                EAN ||--|| Product : "fixProduct"
        Product {
        int id PK
    }
                EAN }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle ean
Bundle WAWIBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
ean ean string(255)
{{ entity.ean }}

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

Property Access Twig Usage Methods Return Type
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
id DB
read
{{ entity.id }}
getId()
string
ean DB
read write
{{ entity.ean }}
getEan()
setEan()
string
fixProduct DB
read write
{{ entity.fixProduct }}
getFixProduct()
setFixProduct()
\Aggrosoft\WAWIBundle\Entity\Product
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
fixProduct OneToOne Product - - - {{ entity.fixProduct }}
client ManyToOne Client - - - {{ entity.client }}
Index Name Columns Type
ean_idx
ean
INDEX