ProductOptionMaterialQuantity

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

Relationships

Click entity to navigate
erDiagram
    ProductOptionMaterialQuantity {
                string id PK
                string quantity
                integer sort
                    }
                ProductOptionMaterialQuantity }o--|| Product : "product"
        Product {
        int id PK
    }
                ProductOptionMaterialQuantity }o--|| ProductOption : "productOption"
        ProductOption {
        int id PK
    }
                    

Metadaten

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

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
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
productOption DB
read write
{{ entity.productOption }}
getProductOption()
setProductOption()
\Aggrosoft\WAWIBundle\Entity\ProductOption
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
productOption ManyToOne ProductOption - materialsquantities - {{ entity.productOption }}
Keine Indexes definiert