AccountSystem

Aggrosoft\WAWIBundle\Entity\AccountSystem
3
Columns
1
Relations
4
Properties

Relationships

Click entity to navigate
erDiagram
    AccountSystem {
                string id PK
                string title
                string ident
                    }
                AccountSystem ||--o{ AccountSystemItem : "items"
        AccountSystemItem {
        int id PK
    }
                    

Metadaten

Tabelle accountsystem
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
title title string(255)
{{ entity.title }}
ident ident string(255)
{{ entity.ident }}

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
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
ident DB
read write
{{ entity.ident }}
getIdent()
setIdent()
string
items DB
read
{{ entity.items }}
getItems()
\Doctrine\Common\Collections\Collection
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
items OneToMany AccountSystemItem accountSystem -
all
{{ entity.items }}
Keine Indexes definiert