StoreLoginToken

Aggrosoft\ExtranetBundle\Entity\StoreLoginToken
3
Columns
1
Relations
4
Properties

Relationships

Click entity to navigate
erDiagram
    StoreLoginToken {
                string id PK
                string token
                datetime expirationDate
                    }
                StoreLoginToken }o--|| Customer : "customer"
        Customer {
        int id PK
    }
                    

Metadaten

Tabelle storelogintoken
Bundle ExtranetBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
token token string(255)
{{ entity.token }}
expirationDate expirationDate datetime
{{ entity.expirationDate }}

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
token DB
read write
{{ entity.token }}
getToken()
setToken()
string
expirationDate DB
read write
{{ entity.expirationDate }}
getExpirationDate()
setExpirationDate()
\DateTime
customer DB
read write
{{ entity.customer }}
getCustomer()
setCustomer()
\Aggrosoft\WAWIBundle\Entity\Customer
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
customer ManyToOne Customer - - - {{ entity.customer }}
Keine Indexes definiert