ProductCountryTax

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

Relationships

Click entity to navigate
erDiagram
    ProductCountryTax {
                string id PK
                    }
                ProductCountryTax }o--|| Product : "product"
        Product {
        int id PK
    }
                ProductCountryTax }o--|| Country : "country"
        Country {
        int id PK
    }
                ProductCountryTax }o--|| Tax : "tax"
        Tax {
        int id PK
    }
                    

Metadaten

Tabelle productcountrytax
Bundle WAWIBundle
Interfaces
IPrototype
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
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
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
product ManyToOne Product - - - {{ entity.product }}
country ManyToOne Country - - - {{ entity.country }}
tax ManyToOne Tax - - - {{ entity.tax }}
Keine Indexes definiert