ProductCustomerCondition

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

Relationships

Click entity to navigate
erDiagram
    ProductCustomerCondition {
                string id PK
                string sku
                string title
                    }
                ProductCustomerCondition }o--|| Product : "product"
        Product {
        int id PK
    }
                ProductCustomerCondition }o--|| Customer : "customer"
        Customer {
        int id PK
    }
                    

Metadaten

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

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
sku DB
read write
{{ entity.sku }}
getSku()
setSku()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
customer DB
read write
{{ entity.customer }}
getCustomer()
setCustomer()
\Aggrosoft\WAWIBundle\Entity\Customer
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - customerConditions - {{ entity.product }}
customer ManyToOne Customer - - - {{ entity.customer }}
Keine Indexes definiert