WorkflowActionJob

Aggrosoft\WAWIBundle\Entity\WorkflowActionJob
6
Columns
3
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    WorkflowActionJob {
                string id PK
                datetime timestamp
                datetime executedFrom
                string entityType
                string entityId
                text allEntityIds
                    }
                WorkflowActionJob }o--|| WorkflowEvent : "workflowEvent"
        WorkflowEvent {
        int id PK
    }
                WorkflowActionJob }o--|| Client : "client"
        Client {
        int id PK
    }
                WorkflowActionJob }o--|| User : "user"
        User {
        int id PK
    }
                    

Metadaten

Tabelle workflowactionjob
Bundle WAWIBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
timestamp timestamp datetime
{{ entity.timestamp }}
executedFrom executedFrom datetime
{{ entity.executedFrom }}
entityType entityType string(128)
{{ entity.entityType }}
entityId entityId string(64)
{{ entity.entityId }}
allEntityIds allEntityIds text
{{ entity.allEntityIds }}

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
entityType DB
read write
{{ entity.entityType }}
getEntityType()
setEntityType()
string
entityId DB
read write
{{ entity.entityId }}
getEntityId()
setEntityId()
string
workflowEvent DB
read write
{{ entity.workflowEvent }}
getWorkflowEvent()
setWorkflowEvent()
\Aggrosoft\WAWIBundle\Entity\WorkflowEvent
user DB
read write
{{ entity.user }}
getUser()
setUser()
\Aggrosoft\WAWIBundle\Entity\User
allEntityIds DB
read write
{{ entity.allEntityIds }}
getAllEntityIds()
setAllEntityIds()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
workflowEvent ManyToOne WorkflowEvent - - - {{ entity.workflowEvent }}
client ManyToOne Client - - - {{ entity.client }}
user ManyToOne User - - - {{ entity.user }}
Keine Indexes definiert