CategoryCountryTax

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

Relationships

Click entity to navigate
erDiagram
    CategoryCountryTax {
                string id PK
                    }
                CategoryCountryTax }o--|| Category : "category"
        Category {
        int id PK
    }
                CategoryCountryTax }o--|| Country : "country"
        Country {
        int id PK
    }
                CategoryCountryTax }o--|| Tax : "tax"
        Tax {
        int id PK
    }
                    

Metadaten

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

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
category DB
read write
{{ entity.category }}
getCategory()
setCategory()
\Aggrosoft\WAWIBundle\Entity\Category
country DB
read write
{{ entity.country }}
getCountry()
setCountry()
\Aggrosoft\WAWIBundle\Entity\Country
tax DB
read write
{{ entity.tax }}
getTax()
setTax()
\Aggrosoft\WAWIBundle\Entity\Tax
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
category ManyToOne Category - - - {{ entity.category }}
country ManyToOne Country - - - {{ entity.country }}
tax ManyToOne Tax - - - {{ entity.tax }}
Keine Indexes definiert