OttoProductStatus

Aggrosoft\WAWIBundle\Entity\OttoProductStatus
22
Columns
3
Relations
25
Properties

Relationships

Click entity to navigate
erDiagram
    OttoProductStatus {
                string id PK
                datetime updatedDate
                string status
                datetime exportDate
                text errors
                text information
                        ___ ___more___
            }
                OttoProductStatus }o--|| Client : "client"
        Client {
        int id PK
    }
                OttoProductStatus }o--|| Product : "product"
        Product {
        int id PK
    }
                OttoProductStatus }o--|| Product : "parentProduct"
        Product {
        int id PK
    }
                    

Metadaten

Tabelle ottoproductstatus
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
updatedDate updatedDate datetime
{{ entity.updatedDate }}
status status string(50)
{{ entity.status }}
exportDate exportDate datetime
{{ entity.exportDate }}
errors errors text
{{ entity.errors }}
information information text
{{ entity.information }}
sku sku string(255)
{{ entity.sku }}
productReference productReference string(255)
{{ entity.productReference }}
productLine productLine string(255)
{{ entity.productLine }}
bulletPoints bulletPoints text
{{ entity.bulletPoints }}
description description text
{{ entity.description }}
attributes attributes text
{{ entity.attributes }}
ean ean string(100)
{{ entity.ean }}
moin moin string(100)
{{ entity.moin }}
b2cPrice b2cPrice decimal(11,2)
{{ entity.b2cPrice }}
vat vat string(36)
{{ entity.vat }}
brandId brandId string(255)
{{ entity.brandId }}
categoryId categoryId string(255)
{{ entity.categoryId }}
manufacturerCompany manufacturerCompany string(255)
{{ entity.manufacturerCompany }}
manufacturerAddress manufacturerAddress string(255)
{{ entity.manufacturerAddress }}
manufacturerEMail manufacturerEMail string(255)
{{ entity.manufacturerEMail }}
manufacturerUrl manufacturerUrl string(255)
{{ entity.manufacturerUrl }}

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
errors DB
read write
{{ entity.errors }}
getErrors()
setErrors()
string
sku DB
read write
{{ entity.sku }}
getSku()
setSku()
string
productReference DB
read write
{{ entity.productReference }}
getProductReference()
setProductReference()
string
ean DB
read write
{{ entity.ean }}
getEan()
setEan()
string
moin DB
read write
{{ entity.moin }}
getMoin()
setMoin()
string
b2cPrice DB
read write
{{ entity.b2cPrice }}
getB2cPrice()
setB2cPrice()
string
vat DB
read write
{{ entity.vat }}
getVat()
setVat()
string
brandId DB
read write
{{ entity.brandId }}
getBrandId()
setBrandId()
string
categoryId DB
read write
{{ entity.categoryId }}
getCategoryId()
setCategoryId()
string
manufacturerCompany DB
read write
{{ entity.manufacturerCompany }}
getManufacturerCompany()
setManufacturerCompany()
string
manufacturerAddress DB
read write
{{ entity.manufacturerAddress }}
getManufacturerAddress()
setManufacturerAddress()
string
manufacturerEMail DB
read write
{{ entity.manufacturerEMail }}
getManufacturerEMail()
setManufacturerEMail()
string
manufacturerUrl DB
read write
{{ entity.manufacturerUrl }}
getManufacturerUrl()
setManufacturerUrl()
string
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
productLine DB
read write
{{ entity.productLine }}
getProductLine()
setProductLine()
string
bulletPoints DB
read write
{{ entity.bulletPoints }}
getBulletPoints()
setBulletPoints()
string
attributes DB
read write
{{ entity.attributes }}
getAttributes()
setAttributes()
string
description DB
read write
{{ entity.description }}
getDescription()
setDescription()
string
parentProduct DB
read write
{{ entity.parentProduct }}
getParentProduct()
setParentProduct()
\Aggrosoft\WAWIBundle\Entity\Product
exportDate DB
read write
{{ entity.exportDate }}
getExportDate()
setExportDate()
\DateTime
updatedDate DB
read write
{{ entity.updatedDate }}
getUpdatedDate()
setUpdatedDate()
\DateTime
status DB
read write
{{ entity.status }}
getStatus()
setStatus()
string
information DB
read write
{{ entity.information }}
getInformation()
setInformation()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
client ManyToOne Client - - - {{ entity.client }}
product ManyToOne Product - - - {{ entity.product }}
parentProduct ManyToOne Product - - - {{ entity.parentProduct }}
Index Name Columns Type
updatedDate_idx
updatedDate
INDEX