CustomerContact

Aggrosoft\WAWIBundle\Entity\CustomerContact
12
Columns
2
Relations
14
Properties

Relationships

Click entity to navigate
erDiagram
    CustomerContact {
                string id PK
                string salutation
                string firstName
                string lastName
                string title
                string phone
                        ___ ___more___
            }
                CustomerContact ||--o{ CustomerContactMetaField : "metafields"
        CustomerContactMetaField {
        int id PK
    }
                CustomerContact }o--|| Customer : "customer"
        Customer {
        int id PK
    }
                    

Metadaten

Tabelle customercontact
Bundle WAWIBundle
Interfaces
IPrototype IMetaExtendable
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
salutation salutation string(128)
{{ entity.salutation }}
firstName firstName string(255)
{{ entity.firstName }}
lastName lastName string(255)
{{ entity.lastName }}
title title string(255)
{{ entity.title }}
phone phone string(255)
{{ entity.phone }}
privatePhone privatePhone string(128)
{{ entity.privatePhone }}
mobile mobile string(255)
{{ entity.mobile }}
fax fax string(255)
{{ entity.fax }}
email email string(255)
{{ entity.email }}
note note text
{{ entity.note }}
defaultContactPerson defaultContactPerson boolean
{{ entity.defaultContactPerson }}

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
salutation DB
read write
{{ entity.salutation }}
getSalutation()
setSalutation()
string
firstName DB
read write
{{ entity.firstName }}
getFirstName()
setFirstName()
string
lastName DB
read write
{{ entity.lastName }}
getLastName()
setLastName()
string
phone DB
read write
{{ entity.phone }}
getPhone()
setPhone()
string
mobile DB
read write
{{ entity.mobile }}
getMobile()
setMobile()
string
fax DB
read write
{{ entity.fax }}
getFax()
setFax()
string
email DB
read write
{{ entity.email }}
getEmail()
setEmail()
string
customer DB
read write
{{ entity.customer }}
getCustomer()
setCustomer()
\Aggrosoft\WAWIBundle\Entity\Customer
note DB
read write
{{ entity.note }}
getNote()
setNote()
string
privatePhone DB
read write
{{ entity.privatePhone }}
getPrivatePhone()
setPrivatePhone()
string
title DB
read write
{{ entity.title }}
getTitle()
setTitle()
string
defaultContactPerson DB
read write
{{ entity.defaultContactPerson }}
getDefaultContactPerson()
setDefaultContactPerson()
boolean
metafields DB
read
{{ entity.metafields }}
getMetafields()
\Doctrine\Common\Collections\Collection
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
metafields OneToMany CustomerContactMetaField customerContact -
persist remove
{{ entity.metafields }}
customer ManyToOne Customer - contactPersons - {{ entity.customer }}
Keine Indexes definiert