ContractGroup

Aggrosoft\WAWIBundle\Entity\ContractGroup
5
Columns
2
Relations
7
Properties

Relationships

Click entity to navigate
erDiagram
    ContractGroup {
                string id PK
                string title
                string grouping
                string additionalInfo
                string additionalInfo2
                    }
                ContractGroup }o--|| EntityStatus : "status"
        EntityStatus {
        int id PK
    }
                ContractGroup }o--|| Client : "usedInClient"
        Client {
        int id PK
    }
                    

Metadaten

Tabelle contractgroup
Bundle WAWIBundle
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
title title string(255)
{{ entity.title }}
grouping grouping string(255)
{{ entity.grouping }}
additionalInfo additionalInfo string(255)
{{ entity.additionalInfo }}
additionalInfo2 additionalInfo2 string(255)
{{ entity.additionalInfo2 }}

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
status DB
read write
{{ entity.status }}
getStatus()
setStatus()
\Aggrosoft\WAWIBundle\Entity\EntityStatus
grouping DB
read write
{{ entity.grouping }}
getGrouping()
setGrouping()
string
additionalInfo DB
read write
{{ entity.additionalInfo }}
getAdditionalInfo()
setAdditionalInfo()
string
usedInClient DB
read write
{{ entity.usedInClient }}
getUsedInClient()
setUsedInClient()
\Aggrosoft\WAWIBundle\Entity\Client
additionalInfo2 DB
read write
{{ entity.additionalInfo2 }}
getAdditionalInfo2()
setAdditionalInfo2()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
status ManyToOne EntityStatus - - - {{ entity.status }}
usedInClient ManyToOne Client - - - {{ entity.usedInClient }}
Keine Indexes definiert