ProductLicense

Aggrosoft\WAWIBundle\Entity\ProductLicense
8
Columns
4
Relations
16
Properties

Relationships

Click entity to navigate
erDiagram
    ProductLicense {
                string id PK
                string licenseKey
                string domain
                string ip
                string foreignId
                boolean blocked
                        ___ ___more___
            }
                ProductLicense }o--|| OfferItem : "offerItem"
        OfferItem {
        int id PK
    }
                ProductLicense }o--|| SubscriptionContractItem : "subscriptionContractItem"
        SubscriptionContractItem {
        int id PK
    }
                ProductLicense }o--|| Product : "directProduct"
        Product {
        int id PK
    }
                ProductLicense }o--|| Customer : "directCustomer"
        Customer {
        int id PK
    }
                    

Metadaten

Tabelle productlicense
Bundle WAWIBundle
Interfaces
IPrototype
Property Column Type Flags Twig Access
id id string(36)
PK AUTO
{{ entity.id }}
licenseKey licenseKey string(255)
{{ entity.licenseKey }}
domain domain string(255)
{{ entity.domain }}
ip ip string(255)
{{ entity.ip }}
foreignId foreignId string(255)
{{ entity.foreignId }}
blocked blocked boolean
{{ entity.blocked }}
validTillDate validTillDate datetime
{{ entity.validTillDate }}
validFromDate validFromDate datetime
{{ entity.validFromDate }}

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
licenseKey DB
read write
{{ entity.licenseKey }}
getLicenseKey()
setLicenseKey()
string
domain DB
read write
{{ entity.domain }}
getDomain()
setDomain()
string
ip DB
read write
{{ entity.ip }}
getIp()
setIp()
string
blocked DB
read write
{{ entity.blocked }}
getBlocked()
setBlocked()
boolean
validTillDate DB
read write
{{ entity.validTillDate }}
getValidTillDate()
setValidTillDate()
\DateTime
validFromDate DB
read write
{{ entity.validFromDate }}
getValidFromDate()
setValidFromDate()
\DateTime
offerItem DB
read write
{{ entity.offerItem }}
getOfferItem()
setOfferItem()
\Aggrosoft\WAWIBundle\Entity\OfferItem
subscriptionContractItem DB
read write
{{ entity.subscriptionContractItem }}
getSubscriptionContractItem()
setSubscriptionContractItem()
\Aggrosoft\WAWIBundle\Entity\SubscriptionContractItem
directProduct DB
read write
{{ entity.directProduct }}
getDirectProduct()
setDirectProduct()
\Aggrosoft\WAWIBundle\Entity\Product
directCustomer DB
read write
{{ entity.directCustomer }}
getDirectCustomer()
setDirectCustomer()
\Aggrosoft\WAWIBundle\Entity\Customer
foreignId DB
read write
{{ entity.foreignId }}
getForeignId()
setForeignId()
string
lastPackage Computed
read
{{ entity.lastPackage }}
getLastPackage()
-
updatesEndTime Computed
read
{{ entity.updatesEndTime }}
getUpdatesEndTime()
-
product Computed
read
{{ entity.product }}
getProduct()
-
owner Computed
read
{{ entity.owner }}
getOwner()
-
Property Type Target Entity Mapped By Inversed By Cascade Twig Access
offerItem ManyToOne OfferItem - - - {{ entity.offerItem }}
subscriptionContractItem ManyToOne SubscriptionContractItem - - - {{ entity.subscriptionContractItem }}
directProduct ManyToOne Product - - - {{ entity.directProduct }}
directCustomer ManyToOne Customer - - - {{ entity.directCustomer }}
Index Name Columns Type
licenseKey_idx
licenseKey
INDEX