AccountSystemItem

Aggrosoft\WAWIBundle\Entity\AccountSystemItem
5
Columns
1
Relations
6
Properties

Relationships

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

Metadaten

Tabelle accountsystemitem
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
title title string(255)
{{ entity.title }}
account account string(255)
{{ entity.account }}
ident ident string(255)
{{ entity.ident }}
itemGroup itemGroup string(255)
{{ entity.itemGroup }}

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
account DB
read write
{{ entity.account }}
getAccount()
setAccount()
string
accountSystem DB
read write
{{ entity.accountSystem }}
getAccountSystem()
setAccountSystem()
\Aggrosoft\WAWIBundle\Entity\AccountSystem
ident DB
read write
{{ entity.ident }}
getIdent()
setIdent()
string
itemGroup DB
read write
{{ entity.itemGroup }}
getItemGroup()
setItemGroup()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
accountSystem ManyToOne AccountSystem - items - {{ entity.accountSystem }}
Index Name Columns Type
title_idx
title
INDEX
account_idx
account
INDEX