CustomerSession

Aggrosoft\ExtranetBundle\Entity\CustomerSession
2
Columns
2
Relations
4
Properties

Relationships

Click entity to navigate
erDiagram
    CustomerSession {
                string id PK
                datetime lastUpdate
                    }
                CustomerSession }o--|| Customer : "customer"
        Customer {
        int id PK
    }
                CustomerSession }o--|| Store : "store"
        Store {
        int id PK
    }
                    

Metadaten

Tabelle customersession
Bundle ExtranetBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
lastUpdate lastUpdate datetime
{{ entity.lastUpdate }}

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
customer DB
read write
{{ entity.customer }}
getCustomer()
setCustomer()
\Aggrosoft\WAWIBundle\Entity\Customer
store DB
read write
{{ entity.store }}
getStore()
setStore()
\Aggrosoft\ExtranetBundle\Entity\Store
lastUpdate DB
read write
{{ entity.lastUpdate }}
getLastUpdate()
setLastUpdate()
\DateTime
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
customer ManyToOne Customer - - - {{ entity.customer }}
store ManyToOne Store - - - {{ entity.store }}
Keine Indexes definiert