PosTerminalModel

Aggrosoft\WAWIBundle\Entity\PosTerminalModel
8
Columns
1
Relations
13
Properties

Relationships

Click entity to navigate
erDiagram
    PosTerminalModel {
                string id PK
                string title
                integer paperWidth
                float fontSize
                float lineHeight
                text receiptTemplate
                        ___ ___more___
            }
                PosTerminalModel ||--o{ PosTerminal : "terminals"
        PosTerminal {
        int id PK
    }
                    

Metadaten

Tabelle posterminalmodel
Bundle WAWIBundle
Interfaces
IUpload
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
title title string(255)
{{ entity.title }}
paperWidth paperWidth integer(11)
{{ entity.paperWidth }}
fontSize fontSize float
{{ entity.fontSize }}
lineHeight lineHeight float
{{ entity.lineHeight }}
receiptTemplate receiptTemplate text
{{ entity.receiptTemplate }}
logoName logo string(255)
{{ entity.logoName }}
lastUpdated lastupdated integer(11)
{{ entity.lastUpdated }}

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
paperWidth DB
read write
{{ entity.paperWidth }}
getPaperWidth()
setPaperWidth()
integer
terminals DB
read
{{ entity.terminals }}
getTerminals()
\Doctrine\Common\Collections\Collection
receiptTemplate DB
read write
{{ entity.receiptTemplate }}
getReceiptTemplate()
setReceiptTemplate()
string
removeRouter Computed
read
{{ entity.removeRouter }}
getRemoveRouter()
-
subPath Computed
read
{{ entity.subPath }}
getSubPath()
-
uploadFields Computed
read
{{ entity.uploadFields }}
getUploadFields()
-
logo Computed
read write
{{ entity.logo }}
getLogo()
setLogo()
-
logoName DB
read write
{{ entity.logoName }}
getLogoName()
setLogoName()
string
lastUpdated DB
read write
{{ entity.lastUpdated }}
getLastUpdated()
setLastUpdated()
integer
fontSize DB
read write
{{ entity.fontSize }}
getFontSize()
setFontSize()
float
lineHeight DB
read write
{{ entity.lineHeight }}
getLineHeight()
setLineHeight()
float
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
terminals OneToMany PosTerminal model - - {{ entity.terminals }}
Keine Indexes definiert