LiabilityPayment

Aggrosoft\WAWIBundle\Entity\LiabilityPayment
6
Columns
2
Relations
9
Properties

Relationships

Click entity to navigate
erDiagram
    LiabilityPayment {
                string id PK
                datetime timestamp
                decimal total
                string paymentTransactionId
                decimal paymentFee
                string note
                    }
                LiabilityPayment }o--|| Payment : "payment"
        Payment {
        int id PK
    }
                LiabilityPayment }o--|| Liability : "liability"
        Liability {
        int id PK
    }
                    

Metadaten

Tabelle liabilitypayment
Bundle WAWIBundle
Interfaces
IChildEntity
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
timestamp timestamp datetime
{{ entity.timestamp }}
total total decimal
{{ entity.total }}
paymentTransactionId paymentTransactionId string(128)
{{ entity.paymentTransactionId }}
paymentFee paymentFee decimal
{{ entity.paymentFee }}
note note string(255)
{{ entity.note }}

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
timestamp DB
read write
{{ entity.timestamp }}
getTimestamp()
setTimestamp()
\DateTime
total DB
read write
{{ entity.total }}
getTotal()
setTotal()
string
paymentTransactionId DB
read write
{{ entity.paymentTransactionId }}
getPaymentTransactionId()
setPaymentTransactionId()
string
payment DB
read write
{{ entity.payment }}
getPayment()
setPayment()
\Aggrosoft\WAWIBundle\Entity\Payment
liability DB
read write
{{ entity.liability }}
getLiability()
setLiability()
\Aggrosoft\WAWIBundle\Entity\Liability
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
paymentFee DB
read write
{{ entity.paymentFee }}
getPaymentFee()
setPaymentFee()
string
parentEntityForForms Computed
read
{{ entity.parentEntityForForms }}
getParentEntityForForms()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
payment ManyToOne Payment - -
persist refresh
{{ entity.payment }}
liability ManyToOne Liability - liabilityPayments
persist refresh
{{ entity.liability }}
Keine Indexes definiert