EbayProductStatus

Aggrosoft\WAWIBundle\Entity\EbayProductStatus
13
Columns
2
Relations
15
Properties

Relationships

Click entity to navigate
erDiagram
    EbayProductStatus {
                string id PK
                decimal startPrice
                string currency
                string itemId
                string categoryId
                string productTitle
                        ___ ___more___
            }
                EbayProductStatus }o--|| Product : "product"
        Product {
        int id PK
    }
                EbayProductStatus }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle ebayproductstatus
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
startPrice startPrice decimal(11,2)
{{ entity.startPrice }}
currency currency string(3)
{{ entity.currency }}
itemId itemId string(32)
{{ entity.itemId }}
categoryId categoryId string(32)
{{ entity.categoryId }}
productTitle productTitle string(255)
{{ entity.productTitle }}
variantTitle variantTitle string(255)
{{ entity.variantTitle }}
sku sku string(255)
{{ entity.sku }}
startTime startTime datetime
{{ entity.startTime }}
endTime endTime datetime
{{ entity.endTime }}
site site string(32)
{{ entity.site }}
conditionDisplayName conditionDisplayName string(16)
{{ entity.conditionDisplayName }}
exportError exportError text
{{ entity.exportError }}

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
startPrice DB
read write
{{ entity.startPrice }}
getStartPrice()
setStartPrice()
string
currency DB
read write
{{ entity.currency }}
getCurrency()
setCurrency()
string
itemId DB
read write
{{ entity.itemId }}
getItemId()
setItemId()
string
categoryId DB
read write
{{ entity.categoryId }}
getCategoryId()
setCategoryId()
string
productTitle DB
read write
{{ entity.productTitle }}
getProductTitle()
setProductTitle()
string
sku DB
read write
{{ entity.sku }}
getSku()
setSku()
string
startTime DB
read write
{{ entity.startTime }}
getStartTime()
setStartTime()
\DateTime
endTime DB
read write
{{ entity.endTime }}
getEndTime()
setEndTime()
\DateTime
product DB
read write
{{ entity.product }}
getProduct()
setProduct()
\Aggrosoft\WAWIBundle\Entity\Product
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
site DB
read write
{{ entity.site }}
getSite()
setSite()
string
conditionDisplayName DB
read write
{{ entity.conditionDisplayName }}
getConditionDisplayName()
setConditionDisplayName()
string
variantTitle DB
read write
{{ entity.variantTitle }}
getVariantTitle()
setVariantTitle()
string
exportError DB
read write
{{ entity.exportError }}
getExportError()
setExportError()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
product ManyToOne Product - - - {{ entity.product }}
client ManyToOne Client - - - {{ entity.client }}
Index Name Columns Type
itemId_idx
itemId
INDEX
endTime_idx
endTime
INDEX