ShirtnetworkProduct

Aggrosoft\ShirtnetworkBundle\Entity\ShirtnetworkProduct
17
Columns
3
Relations
20
Properties

Relationships

Click entity to navigate
erDiagram
    ShirtnetworkProduct {
                string id PK
                string foreignId
                string productId
                string parentId
                integer variant
                float price
                        ___ ___more___
            }
                ShirtnetworkProduct }o--|| OfferItem : "offerItem"
        OfferItem {
        int id PK
    }
                ShirtnetworkProduct ||--o{ ShirtnetworkProductView : "productViews"
        ShirtnetworkProductView {
        int id PK
    }
                ShirtnetworkProduct }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle shirtnetworkproduct
Bundle ShirtnetworkBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
foreignId foreign_id string(36)
{{ entity.foreignId }}
productId productId string(32)
{{ entity.productId }}
parentId parentId string(32)
{{ entity.parentId }}
variant variant integer
{{ entity.variant }}
price price float
{{ entity.price }}
size size integer
{{ entity.size }}
user user integer
{{ entity.user }}
provision provision integer
{{ entity.provision }}
variantName variantName string(255)
{{ entity.variantName }}
sizeName sizeName string(255)
{{ entity.sizeName }}
useCorrectionView useCorrectionView boolean
{{ entity.useCorrectionView }}
correctionViewPrice correctionViewPrice decimal
{{ entity.correctionViewPrice }}
useTypeSample useTypeSample boolean
{{ entity.useTypeSample }}
typeSamplePrice typeSamplePrice decimal
{{ entity.typeSamplePrice }}
vpe vpe float
{{ entity.vpe }}
file file string(255)
{{ entity.file }}

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
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
productId DB
read write
{{ entity.productId }}
getProductId()
setProductId()
string
parentId DB
read write
{{ entity.parentId }}
getParentId()
setParentId()
string
variant DB
read write
{{ entity.variant }}
getVariant()
setVariant()
integer
price DB
read write
{{ entity.price }}
getPrice()
setPrice()
float
size DB
read write
{{ entity.size }}
getSize()
setSize()
integer
user DB
read write
{{ entity.user }}
getUser()
setUser()
integer
provision DB
read write
{{ entity.provision }}
getProvision()
setProvision()
integer
variantName DB
read write
{{ entity.variantName }}
getVariantName()
setVariantName()
string
sizeName DB
read write
{{ entity.sizeName }}
getSizeName()
setSizeName()
string
useCorrectionView DB
read write
{{ entity.useCorrectionView }}
getUseCorrectionView()
setUseCorrectionView()
boolean
correctionViewPrice DB
read write
{{ entity.correctionViewPrice }}
getCorrectionViewPrice()
setCorrectionViewPrice()
float
useTypeSample DB
read write
{{ entity.useTypeSample }}
getUseTypeSample()
setUseTypeSample()
boolean
typeSamplePrice DB
read write
{{ entity.typeSamplePrice }}
getTypeSamplePrice()
setTypeSamplePrice()
float
vpe DB
read write
{{ entity.vpe }}
getVpe()
setVpe()
float
file DB
read write
{{ entity.file }}
getFile()
setFile()
string
productViews DB
read write
{{ entity.productViews }}
getProductViews()
setProductViews()
\Doctrine\Common\Collections\Collection
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
offerItem DB
read write
{{ entity.offerItem }}
getOfferItem()
setOfferItem()
\Aggrosoft\WAWIBundle\Entity\OfferItem
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
offerItem ManyToOne OfferItem - - - {{ entity.offerItem }}
productViews OneToMany ShirtnetworkProductView shirtnetworkProduct -
persist remove
{{ entity.productViews }}
client ManyToOne Client - shirtnetworkproducts
persist refresh
{{ entity.client }}
Index Name Columns Type
foreign_idx
foreign_id
INDEX