CSVExportFilter

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

Relationships

Click entity to navigate
erDiagram
    CSVExportFilter {
                string id PK
                string filterCondition
                    }
                CSVExportFilter }o--|| CSVExportFilter : "parent"
        CSVExportFilter {
        int id PK
    }
                CSVExportFilter ||--o{ CSVExportFilter : "children"
        CSVExportFilter {
        int id PK
    }
                CSVExportFilter ||--o{ CSVExportFilterRule : "rules"
        CSVExportFilterRule {
        int id PK
    }
                CSVExportFilter ||--|| CSVExport : "csvexport"
        CSVExport {
        int id PK
    }
                    

Metadaten

Tabelle csvexportfilter
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
filterCondition filterCondition string(3)
{{ entity.filterCondition }}

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
filterCondition DB
read write
{{ entity.filterCondition }}
getFilterCondition()
setFilterCondition()
string
parent DB
read write
{{ entity.parent }}
getParent()
setParent()
\Aggrosoft\WAWIBundle\Entity\CSVExportFilter
children DB
read
{{ entity.children }}
getChildren()
\Doctrine\Common\Collections\Collection
rules DB
read
{{ entity.rules }}
getRules()
\Doctrine\Common\Collections\Collection
csvexport DB
read write
{{ entity.csvexport }}
getCsvexport()
setCsvexport()
\Aggrosoft\WAWIBundle\Entity\CSVExport
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
parent ManyToOne CSVExportFilter - rules - {{ entity.parent }}
children OneToMany CSVExportFilter parent -
persist remove refresh
{{ entity.children }}
rules OneToMany CSVExportFilterRule csvexportfilter -
persist remove refresh
{{ entity.rules }}
csvexport OneToOne CSVExport - filter - {{ entity.csvexport }}
Keine Indexes definiert