PayPalTransaction

Aggrosoft\WAWIBundle\Entity\PayPalTransaction
11
Columns
4
Relations
15
Properties

Relationships

Click entity to navigate
erDiagram
    PayPalTransaction {
                string id PK
                datetime timestamp
                string transactionId
                string fullTransactionId
                decimal amount
                decimal fees
                        ___ ___more___
            }
                PayPalTransaction }o--|| Order : "order"
        Order {
        int id PK
    }
                PayPalTransaction }o--o{ Order : "otherOrders"
        Order {
        int id PK
    }
                PayPalTransaction }o--|| Liability : "liability"
        Liability {
        int id PK
    }
                PayPalTransaction }o--|| AccountBooking : "accountBooking"
        AccountBooking {
        int id PK
    }
                    

Metadaten

Tabelle paypaltransaction
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
timestamp timestamp datetime
{{ entity.timestamp }}
transactionId transactionId string(30)
{{ entity.transactionId }}
fullTransactionId fullTransactionId string(255)
{{ entity.fullTransactionId }}
amount amount decimal
{{ entity.amount }}
fees fees decimal
{{ entity.fees }}
reference reference string(255)
{{ entity.reference }}
buyerEMail buyerEMail string(255)
{{ entity.buyerEMail }}
receiverEMail receiverEMail string(255)
{{ entity.receiverEMail }}
accountEMail accountEMail string(255)
{{ entity.accountEMail }}
uniqNumber uniqNumber string(50)
{{ entity.uniqNumber }}

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
transactionId DB
read write
{{ entity.transactionId }}
getTransactionId()
setTransactionId()
string
amount DB
read write
{{ entity.amount }}
getAmount()
setAmount()
string
reference DB
read write
{{ entity.reference }}
getReference()
setReference()
string
buyerEMail DB
read write
{{ entity.buyerEMail }}
getBuyerEMail()
setBuyerEMail()
string
receiverEMail DB
read write
{{ entity.receiverEMail }}
getReceiverEMail()
setReceiverEMail()
string
order DB
read write
{{ entity.order }}
getOrder()
setOrder()
\Aggrosoft\WAWIBundle\Entity\Order
uniqNumber DB
read write
{{ entity.uniqNumber }}
getUniqNumber()
setUniqNumber()
string
accountEMail DB
read write
{{ entity.accountEMail }}
getAccountEMail()
setAccountEMail()
string
fullTransactionId DB
read write
{{ entity.fullTransactionId }}
getFullTransactionId()
setFullTransactionId()
string
fees DB
read write
{{ entity.fees }}
getFees()
setFees()
string
liability DB
read write
{{ entity.liability }}
getLiability()
setLiability()
\Aggrosoft\WAWIBundle\Entity\Liability
accountBooking DB
read write
{{ entity.accountBooking }}
getAccountBooking()
setAccountBooking()
\Aggrosoft\WAWIBundle\Entity\AccountBooking
otherOrders DB
read
{{ entity.otherOrders }}
getOtherOrders()
\Doctrine\Common\Collections\Collection
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
order ManyToOne Order - - - {{ entity.order }}
otherOrders ManyToMany Order - paypaltransaction - {{ entity.otherOrders }}
liability ManyToOne Liability - - - {{ entity.liability }}
accountBooking ManyToOne AccountBooking - - - {{ entity.accountBooking }}
Index Name Columns Type
transactionId_idx
transactionId
INDEX
accountEMail_idx
accountEMail
INDEX
timestamp_idx
timestamp
INDEX