ProductMaterial

Aggrosoft\WAWIBundle\Entity\ProductMaterial
5
Columns
3
Relations
8
Properties

Relationships

Click entity to navigate
erDiagram
    ProductMaterial {
                string id PK
                integer sort
                string quantity
                string fromSetQuantity
                boolean notBookMaterialInProductionOrders
                    }
                ProductMaterial }o--|| Product : "materialProduct"
        Product {
        int id PK
    }
                ProductMaterial }o--|| Product : "fromSetProduct"
        Product {
        int id PK
    }
                ProductMaterial }o--|| Product : "product"
        Product {
        int id PK
    }
                    

Metadaten

Tabelle productmaterial
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
sort sort integer(11)
{{ entity.sort }}
quantity quantity string(255)
{{ entity.quantity }}
fromSetQuantity fromSetQuantity string(255)
{{ entity.fromSetQuantity }}
notBookMaterialInProductionOrders notBookMaterialInProductionOrders boolean
{{ entity.notBookMaterialInProductionOrders }}

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
materialProduct DB
read write
{{ entity.materialProduct }}
getMaterialProduct()
setMaterialProduct()
\Aggrosoft\WAWIBundle\Entity\Product
notBookMaterialInProductionOrders DB
read write
{{ entity.notBookMaterialInProductionOrders }}
getNotBookMaterialInProductionOrders()
setNotBookMaterialInProductionOrders()
boolean
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
fromSetProduct DB
read write
{{ entity.fromSetProduct }}
getFromSetProduct()
setFromSetProduct()
\Aggrosoft\WAWIBundle\Entity\Product
fromSetQuantity DB
read write
{{ entity.fromSetQuantity }}
getFromSetQuantity()
setFromSetQuantity()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
materialProduct ManyToOne Product - - - {{ entity.materialProduct }}
fromSetProduct ManyToOne Product - - - {{ entity.fromSetProduct }}
product ManyToOne Product - materials - {{ entity.product }}
Keine Indexes definiert