ProductOptionMaterial

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

Relationships

Click entity to navigate
erDiagram
    ProductOptionMaterial {
                string id PK
                string quantity
                    }
                ProductOptionMaterial }o--|| Product : "materialProduct"
        Product {
        int id PK
    }
                ProductOptionMaterial }o--|| ProductOptionField : "productOptionField"
        ProductOptionField {
        int id PK
    }
                    

Metadaten

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

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
quantity DB
read write
{{ entity.quantity }}
getQuantity()
setQuantity()
string
materialProduct DB
read write
{{ entity.materialProduct }}
getMaterialProduct()
setMaterialProduct()
\Aggrosoft\WAWIBundle\Entity\Product
productOptionField DB
read write
{{ entity.productOptionField }}
getProductOptionField()
setProductOptionField()
\Aggrosoft\WAWIBundle\Entity\ProductOptionField
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
materialProduct ManyToOne Product - - - {{ entity.materialProduct }}
productOptionField ManyToOne ProductOptionField - materials - {{ entity.productOptionField }}
Keine Indexes definiert