CommandTask

Aggrosoft\WAWIBundle\Entity\CommandTask
7
Columns
2
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    CommandTask {
                string id PK
                datetime timestamp
                string idempotenceKey
                datetime executedFrom
                datetime completedDate
                datetime failedDate
                        ___ ___more___
            }
                CommandTask }o--|| Client : "client"
        Client {
        int id PK
    }
                CommandTask }o--|| User : "user"
        User {
        int id PK
    }
                    

Metadaten

Tabelle commandtask
Bundle WAWIBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
timestamp timestamp datetime
{{ entity.timestamp }}
idempotenceKey idempotenceKey string(255)
{{ entity.idempotenceKey }}
executedFrom executedFrom datetime
{{ entity.executedFrom }}
completedDate completedDate datetime
{{ entity.completedDate }}
failedDate failedDate datetime
{{ entity.failedDate }}
jsonCommand jsonCommand text
{{ entity.jsonCommand }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
client DB
read write
{{ entity.client }}
getClient()
setClient()
\Aggrosoft\WAWIBundle\Entity\Client
id DB
read
{{ entity.id }}
getId()
string
timestamp DB
read write
{{ entity.timestamp }}
getTimestamp()
setTimestamp()
\DateTime
executedFrom DB
read write
{{ entity.executedFrom }}
getExecutedFrom()
setExecutedFrom()
\DateTime
completedDate DB
read write
{{ entity.completedDate }}
getCompletedDate()
setCompletedDate()
\DateTime
jsonCommand DB
read write
{{ entity.jsonCommand }}
getJsonCommand()
setJsonCommand()
string
user DB
read write
{{ entity.user }}
getUser()
setUser()
\Aggrosoft\WAWIBundle\Entity\User
idempotenceKey DB
read write
{{ entity.idempotenceKey }}
getIdempotenceKey()
setIdempotenceKey()
string
failedDate DB
read write
{{ entity.failedDate }}
getFailedDate()
setFailedDate()
\DateTime
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
client ManyToOne Client - - - {{ entity.client }}
user ManyToOne User - - - {{ entity.user }}
Index Name Columns Type
timestamp_idx
timestamp
INDEX
search_idx
completedDate executedFrom
INDEX