SubscriptionContractPaymentField

Aggrosoft\WAWIBundle\Entity\SubscriptionContractPaymentField
3
Columns
2
Relations
5
Properties

Relationships

Click entity to navigate
erDiagram
    SubscriptionContractPaymentField {
                string id PK
                string value
                integer sort
                    }
                SubscriptionContractPaymentField }o--|| PaymentField : "paymentField"
        PaymentField {
        int id PK
    }
                SubscriptionContractPaymentField }o--|| SubscriptionContract : "subscriptionContract"
        SubscriptionContract {
        int id PK
    }
                    

Metadaten

Tabelle subscriptioncontractpaymentfield
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
value value string(255)
{{ entity.value }}
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
value DB
read write
{{ entity.value }}
getValue()
setValue()
string
sort DB
read write
{{ entity.sort }}
getSort()
setSort()
integer
paymentField DB
read write
{{ entity.paymentField }}
getPaymentField()
setPaymentField()
\Aggrosoft\WAWIBundle\Entity\PaymentField
subscriptionContract DB
read write
{{ entity.subscriptionContract }}
getSubscriptionContract()
setSubscriptionContract()
\Aggrosoft\WAWIBundle\Entity\SubscriptionContract
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
paymentField ManyToOne PaymentField - - - {{ entity.paymentField }}
subscriptionContract ManyToOne SubscriptionContract - - - {{ entity.subscriptionContract }}
Keine Indexes definiert