Add Doctrine entities for newsletters, options, and segments

[MAILPOET-2216]
This commit is contained in:
Jan Jakeš
2019-07-25 16:10:55 +02:00
committed by M. Shull
parent 03fb82cf95
commit eb837c8e36
6 changed files with 605 additions and 10 deletions

View File

@@ -0,0 +1,79 @@
<?php
namespace MailPoet\Entities;
use MailPoet\Doctrine\EntityTraits\AutoincrementedIdTrait;
use MailPoet\Doctrine\EntityTraits\CreatedAtTrait;
use MailPoet\Doctrine\EntityTraits\DeletedAtTrait;
use MailPoet\Doctrine\EntityTraits\UpdatedAtTrait;
/**
* @Entity()
* @Table(name="segments")
*/
class SegmentEntity {
use AutoincrementedIdTrait;
use CreatedAtTrait;
use UpdatedAtTrait;
use DeletedAtTrait;
/**
* @Column(type="string")
* @var string
*/
private $name;
/**
* @Column(type="string")
* @var string
*/
private $type;
/**
* @Column(type="string")
* @var string
*/
private $description;
/**
* @return string
*/
function getName() {
return $this->name;
}
/**
* @param string $name
*/
function setName($name) {
$this->name = $name;
}
/**
* @return string
*/
function getType() {
return $this->type;
}
/**
* @param string $type
*/
function setType($type) {
$this->type = $type;
}
/**
* @return string
*/
function getDescription() {
return $this->description;
}
/**
* @param string $description
*/
function setDescription($description) {
$this->description = $description;
}
}