VendorContact

Aggrosoft\WAWIBundle\Entity\VendorContact
12
Columns
1
Relations
13
Properties

Relationships

Click entity to navigate
erDiagram
    VendorContact {
                string id PK
                string firstName
                string lastName
                string salutation
                string street
                string zip
                        ___ ___more___
            }
                VendorContact }o--|| Vendor : "vendor"
        Vendor {
        int id PK
    }
                    

Metadaten

Tabelle vendorcontact
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
firstName firstName string(255)
{{ entity.firstName }}
lastName lastName string(255)
{{ entity.lastName }}
salutation salutation string(128)
{{ entity.salutation }}
street street string(255)
{{ entity.street }}
zip zip string(10)
{{ entity.zip }}
city city string(255)
{{ entity.city }}
phone phone string(255)
{{ entity.phone }}
mobile mobile string(255)
{{ entity.mobile }}
fax fax string(255)
{{ entity.fax }}
email email string(255)
{{ entity.email }}
department department string(255)
{{ entity.department }}

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
firstName DB
read write
{{ entity.firstName }}
getFirstName()
setFirstName()
string
lastName DB
read write
{{ entity.lastName }}
getLastName()
setLastName()
string
street DB
read write
{{ entity.street }}
getStreet()
setStreet()
string
zip DB
read write
{{ entity.zip }}
getZip()
setZip()
string
city DB
read write
{{ entity.city }}
getCity()
setCity()
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
department DB
read write
{{ entity.department }}
getDepartment()
setDepartment()
string
vendor DB
read write
{{ entity.vendor }}
getVendor()
setVendor()
\Aggrosoft\WAWIBundle\Entity\Vendor
salutation DB
read write
{{ entity.salutation }}
getSalutation()
setSalutation()
string
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
vendor ManyToOne Vendor - contacts - {{ entity.vendor }}
Keine Indexes definiert