BanknoteCountProtocol

Aggrosoft\WAWIBundle\Entity\BanknoteCountProtocol
6
Columns
4
Relations
12
Properties

Relationships

Click entity to navigate
erDiagram
    BanknoteCountProtocol {
                string id PK
                boolean intermediate
                datetime created
                decimal cashTotal
                decimal customTotal
                decimal systemTotal
                    }
                BanknoteCountProtocol ||--|| CashReport : "cashReport"
        CashReport {
        int id PK
    }
                BanknoteCountProtocol ||--o{ BanknoteCount : "banknoteCounts"
        BanknoteCount {
        int id PK
    }
                BanknoteCountProtocol }o--|| User : "user"
        User {
        int id PK
    }
                BanknoteCountProtocol }o--|| CashJournal : "cashJournal"
        CashJournal {
        int id PK
    }
                    

Metadaten

Tabelle banknotecountprotocol
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
intermediate intermediate boolean
{{ entity.intermediate }}
created created datetime
{{ entity.created }}
cashTotal cashTotal decimal
{{ entity.cashTotal }}
customTotal customTotal decimal
{{ entity.customTotal }}
systemTotal systemTotal decimal
{{ entity.systemTotal }}

Tipp: Diese Properties sind über Getter/Setter-Methoden in Twig verfügbar. Verwende {{ entity.propertyName }} zum Lesen.

Property Access Twig Usage Methods Return Type
cashTotalSum Computed
read
{{ entity.cashTotalSum }}
getCashTotalSum()
-
deviation Computed
read
{{ entity.deviation }}
getDeviation()
-
id DB
read
{{ entity.id }}
getId()
string
cashTotal DB
read write
{{ entity.cashTotal }}
getCashTotal()
setCashTotal()
string
cashReport DB
read write
{{ entity.cashReport }}
getCashReport()
setCashReport()
\Aggrosoft\WAWIBundle\Entity\CashReport
banknoteCounts DB
read
{{ entity.banknoteCounts }}
getBanknoteCounts()
\Doctrine\Common\Collections\Collection
intermediate DB
read write
{{ entity.intermediate }}
getIntermediate()
setIntermediate()
boolean
created DB
read write
{{ entity.created }}
getCreated()
setCreated()
\DateTime
systemTotal DB
read write
{{ entity.systemTotal }}
getSystemTotal()
setSystemTotal()
string
user DB
read write
{{ entity.user }}
getUser()
setUser()
\Aggrosoft\WAWIBundle\Entity\User
cashJournal DB
read write
{{ entity.cashJournal }}
getCashJournal()
setCashJournal()
\Aggrosoft\WAWIBundle\Entity\CashJournal
customTotal DB
read write
{{ entity.customTotal }}
getCustomTotal()
setCustomTotal()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
cashReport OneToOne CashReport - banknoteCountProtocol - {{ entity.cashReport }}
banknoteCounts OneToMany BanknoteCount banknoteCountProtocol -
persist remove refresh
{{ entity.banknoteCounts }}
user ManyToOne User - - - {{ entity.user }}
cashJournal ManyToOne CashJournal - - - {{ entity.cashJournal }}
Keine Indexes definiert