April Mai 2019
This commit is contained in:
parent
8c514bbd4d
commit
6dbaa30791
37 changed files with 55121 additions and 310 deletions
|
|
@ -8,8 +8,9 @@ use Doctrine\ORM\Mapping as ORM;
|
|||
* TravelCountry
|
||||
*
|
||||
* @ORM\Table(name="travel_country", indexes={@ORM\Index(name="FK_travel_country_page", columns={"feedback_page_id"})})
|
||||
* @ORM\Entity
|
||||
* @ORM\Entity(repositoryClass="AppBundle\Entity\TravelCountryRepository")
|
||||
*/
|
||||
|
||||
class TravelCountry
|
||||
{
|
||||
/**
|
||||
|
|
@ -42,6 +43,15 @@ class TravelCountry
|
|||
*/
|
||||
private $id;
|
||||
|
||||
/**
|
||||
* @var boolean
|
||||
*
|
||||
* @ORM\Column(name="active_frontend", type="boolean", nullable=false)
|
||||
*/
|
||||
private $active_frontend;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @var \AppBundle\Entity\Page
|
||||
*
|
||||
|
|
@ -64,6 +74,7 @@ class TravelCountry
|
|||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Set name
|
||||
*
|
||||
|
|
@ -146,6 +157,30 @@ class TravelCountry
|
|||
return $this->id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set active_frontend
|
||||
*
|
||||
* @param boolean $active_frontend
|
||||
*
|
||||
* @return TravelClass
|
||||
*/
|
||||
public function setActiveFrontend($active_frontend)
|
||||
{
|
||||
$this->active_frontend = $active_frontend;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get active_frontend
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function getActiveFrontend()
|
||||
{
|
||||
return $this->active_frontend;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Set feedbackPage
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue