ReportJob

Aggrosoft\WAWIBundle\Entity\ReportJob
4
Columns
2
Relations
6
Properties

Relationships

Click entity to navigate
erDiagram
    ReportJob {
                string id PK
                integer position
                string fileName
                datetime timestamp
                    }
                ReportJob }o--|| Report : "report"
        Report {
        int id PK
    }
                ReportJob }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle reportjob
Bundle WAWIBundle
Interfaces
IClientable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
position position integer
{{ entity.position }}
fileName fileName string(255)
{{ entity.fileName }}
timestamp timestamp datetime
{{ entity.timestamp }}

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
position DB
read write
{{ entity.position }}
getPosition()
setPosition()
integer
fileName DB
read write
{{ entity.fileName }}
getFileName()
setFileName()
string
timestamp DB
read write
{{ entity.timestamp }}
getTimestamp()
setTimestamp()
\DateTime
report DB
read write
{{ entity.report }}
getReport()
setReport()
\Aggrosoft\WAWIBundle\Entity\Report
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
report ManyToOne Report - jobs - {{ entity.report }}
client ManyToOne Client - csvexports - {{ entity.client }}
Keine Indexes definiert