123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- use Doctrine\ORM\Mapping as ORM;
- /**
- * EntityEventEmailTemplate
- *
- * @Table(name="event_email_template")
- * @Entity
- */
- class EntityEventEmailTemplate
- {
- /**
- * @var integer
- *
- * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @Id
- * @GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var string
- *
- * @Column(name="message", type="text", precision=0, scale=0, nullable=true, unique=false)
- */
- private $message;
- /**
- * @var string
- *
- * @Column(name="subject", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
- */
- private $subject;
- /**
- * @var string
- *
- * @Column(name="event_type_name", type="string", length=255, precision=0, scale=0, nullable=true, unique=false)
- */
- private $eventTypeName;
- /**
- * @var boolean
- *
- * @Column(name="activated", type="boolean", precision=0, scale=0, nullable=false, unique=false)
- */
- private $activated;
- /**
- * @var integer
- *
- * @Column(name="language_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $languageId;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set message
- *
- * @param string $message
- * @return EntityEventEmailTemplate
- */
- public function setMessage($message)
- {
- $this->message = $message;
- return $this;
- }
- /**
- * Get message
- *
- * @return string
- */
- public function getMessage()
- {
- return $this->message;
- }
- /**
- * Set subject
- *
- * @param string $subject
- * @return EntityEventEmailTemplate
- */
- public function setSubject($subject)
- {
- $this->subject = $subject;
- return $this;
- }
- /**
- * Get subject
- *
- * @return string
- */
- public function getSubject()
- {
- return $this->subject;
- }
- /**
- * Set eventTypeName
- *
- * @param string $eventTypeName
- * @return EntityEventEmailTemplate
- */
- public function setEventTypeName($eventTypeName)
- {
- $this->eventTypeName = $eventTypeName;
- return $this;
- }
- /**
- * Get eventTypeName
- *
- * @return string
- */
- public function getEventTypeName()
- {
- return $this->eventTypeName;
- }
- /**
- * Set activated
- *
- * @param boolean $activated
- * @return EntityEventEmailTemplate
- */
- public function setActivated($activated)
- {
- $this->activated = $activated;
- return $this;
- }
- /**
- * Get activated
- *
- * @return boolean
- */
- public function getActivated()
- {
- return $this->activated;
- }
- /**
- * Set languageId
- *
- * @param integer $languageId
- * @return EntityEventEmailTemplate
- */
- public function setLanguageId($languageId)
- {
- $this->languageId = $languageId;
- return $this;
- }
- /**
- * Get languageId
- *
- * @return integer
- */
- public function getLanguageId()
- {
- return $this->languageId;
- }
- }
|