VoucherSerieAccessory

Aggrosoft\WAWIBundle\Entity\VoucherSerieAccessory
6
Columns
2
Relations
8
Properties

Relationships

Click entity to navigate
erDiagram
    VoucherSerieAccessory {
                string id PK
                string quantity
                decimal price
                integer cartType
                date activeFrom
                date activeTo
                    }
                VoucherSerieAccessory }o--|| Product : "accessoryProduct"
        Product {
        int id PK
    }
                VoucherSerieAccessory }o--|| VoucherSerie : "voucherserie"
        VoucherSerie {
        int id PK
    }
                    

Metadaten

Tabelle voucherserieaccessory
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
quantity quantity string(255)
{{ entity.quantity }}
price price decimal
{{ entity.price }}
cartType cartType integer(2)
{{ entity.cartType }}
activeFrom activeFrom date
{{ entity.activeFrom }}
activeTo activeTo date
{{ entity.activeTo }}

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
price DB
read write
{{ entity.price }}
getPrice()
setPrice()
string
cartType DB
read write
{{ entity.cartType }}
getCartType()
setCartType()
integer
activeFrom DB
read write
{{ entity.activeFrom }}
getActiveFrom()
setActiveFrom()
\DateTime
activeTo DB
read write
{{ entity.activeTo }}
getActiveTo()
setActiveTo()
\DateTime
accessoryProduct DB
read write
{{ entity.accessoryProduct }}
getAccessoryProduct()
setAccessoryProduct()
\Aggrosoft\WAWIBundle\Entity\Product
voucherserie DB
read write
{{ entity.voucherserie }}
getVoucherserie()
setVoucherserie()
\Aggrosoft\WAWIBundle\Entity\VoucherSerie
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
accessoryProduct ManyToOne Product - - - {{ entity.accessoryProduct }}
voucherserie ManyToOne VoucherSerie - accessories - {{ entity.voucherserie }}
Keine Indexes definiert