CSVExportJob

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

Relationships

Click entity to navigate
erDiagram
    CSVExportJob {
                string id PK
                integer position
                string fileName
                datetime timestamp
                    }
                CSVExportJob }o--|| CSVExport : "csvexport"
        CSVExport {
        int id PK
    }
                CSVExportJob }o--|| Client : "client"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle csvexportjob
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
csvexport DB
read write
{{ entity.csvexport }}
getCsvexport()
setCsvexport()
\Aggrosoft\WAWIBundle\Entity\CSVExport
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
csvexport ManyToOne CSVExport - jobs - {{ entity.csvexport }}
client ManyToOne Client - csvexports - {{ entity.client }}
Keine Indexes definiert