109 lines
1.8 KiB
PHP
109 lines
1.8 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace AppBundle\Entity;
|
||
|
|
||
|
use AppBundle\Traits\Commentable;
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
* Festival
|
||
|
*
|
||
|
* @ORM\Table(name="serieFestival")
|
||
|
* @ORM\Entity(repositoryClass="AppBundle\Repository\FestivalRepository")
|
||
|
*/
|
||
|
class SerieFestival {
|
||
|
|
||
|
/**
|
||
|
* @var int
|
||
|
*
|
||
|
* @ORM\Column(name="id", type="integer")
|
||
|
* @ORM\Id
|
||
|
* @ORM\GeneratedValue(strategy="AUTO")
|
||
|
*/
|
||
|
private $id;
|
||
|
|
||
|
/**
|
||
|
* @var string
|
||
|
*
|
||
|
* @ORM\Column(name="name", type="string", length=255)
|
||
|
*/
|
||
|
private $name;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* variabilised products sold
|
||
|
* @ORM\OneToMany(targetEntity="AppBundle\Entity\Festival", mappedBy="serieFestival")
|
||
|
*/
|
||
|
private $festivals;
|
||
|
|
||
|
/**
|
||
|
* @var \DateTime
|
||
|
*
|
||
|
* @ORM\Column(name="dateCreation", type="datetime")
|
||
|
*/
|
||
|
private $dateCreation;
|
||
|
|
||
|
/**
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getId()
|
||
|
{
|
||
|
return $this->id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $id
|
||
|
*/
|
||
|
public function setId($id)
|
||
|
{
|
||
|
$this->id = $id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getName()
|
||
|
{
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
*/
|
||
|
public function setName($name)
|
||
|
{
|
||
|
$this->name = $name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function getFestivals()
|
||
|
{
|
||
|
return $this->festivals;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param mixed $festivals
|
||
|
*/
|
||
|
public function setFestivals($festivals)
|
||
|
{
|
||
|
$this->festivals = $festivals;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return \DateTime
|
||
|
*/
|
||
|
public function getDateCreation()
|
||
|
{
|
||
|
return $this->dateCreation;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param \DateTime $dateCreation
|
||
|
*/
|
||
|
public function setDateCreation($dateCreation)
|
||
|
{
|
||
|
$this->dateCreation = $dateCreation;
|
||
|
}
|
||
|
}
|