Currency
Aggrosoft\WAWIBundle\Entity\Currency
6
Columns
2
Relations
8
Properties
Metadaten
Tabelle
currency
Bundle
WAWIBundle
Interfaces
IMetaExtendable
| Property | Column | Type | Flags | Twig Access |
|---|---|---|---|---|
id
|
id
|
string(36)
|
PK
AUTO
|
{{ entity.id }} |
title
|
title
|
string(255)
|
|
{{ entity.title }} |
isoCode
|
isoCode
|
string(3)
|
|
{{ entity.isoCode }} |
sign
|
sign
|
string(10)
|
|
{{ entity.sign }} |
rate
|
rate
|
decimal
|
|
{{ entity.rate }} |
sort
|
sort
|
integer(11)
|
|
{{ entity.sort }} |
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
|
isoCode
DB
|
read
write
|
{{
entity.isoCode
}}
|
getIsoCode()
setIsoCode()
|
string
|
rate
DB
|
read
write
|
{{
entity.rate
}}
|
getRate()
setRate()
|
float
|
metafields
DB
|
read
|
{{
entity.metafields
}}
|
getMetafields()
|
\Doctrine\Common\Collections\Collection
|
banknotes
DB
|
read
|
{{
entity.banknotes
}}
|
getBanknotes()
|
\Doctrine\Common\Collections\Collection
|
sort
DB
|
read
write
|
{{
entity.sort
}}
|
getSort()
setSort()
|
integer
|
sign
DB
|
read
write
|
{{
entity.sign
}}
|
getSign()
setSign()
|
string
|
| Property | Type | Target Entity | Mapped By | Inversed By | Cascade | Twig Access |
|---|---|---|---|---|---|---|
banknotes
|
OneToMany | Banknote |
currency
|
- |
persist
remove
|
{{ entity.banknotes }} |
metafields
|
OneToMany | CurrencyMetaField |
currency
|
- |
persist
remove
|
{{ entity.metafields }} |
Keine Indexes definiert