<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
/**
* SettingsRol
*
* @ORM\Table(name="settings_rol")
* @ORM\Entity(repositoryClass="App\Repository\SettingsTypeRepository")
*/
class SettingsRol
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var string
* @ORM\Column(name="team", type="string", length=255)
*/
private $team;
/**
* @var string
* @Assert\NotBlank()
* @ORM\Column(name="rol", type="string", length=255)
*/
private $rol;
/**
* @var int
*
* @ORM\Column(name="modulo_admin", type="integer")
*/
private $madmin;
/**
* @var int
*
* @ORM\Column(name="modulo_my_flight", type="integer")
*/
private $mmyflight;
/**
* @var int
*
* @ORM\Column(name="modulo_hotel", type="integer")
*/
private $mhotel;
/**
* @var int
*
* @ORM\Column(name="modulo_agenda", type="integer")
*/
private $magenda;
/**
* @var int
*
* @ORM\Column(name="modulo_speakers", type="integer")
*/
private $mspeakers;
/**
* @var int
*
* @ORM\Column(name="modulo_documents", type="integer")
*/
private $mdocuments;
/**
* @var int
*
* @ORM\Column(name="modulo_locations", type="integer")
*/
private $mlocations;
/**
* @var int
*
* @ORM\Column(name="modulo_contacts", type="integer")
*/
private $mcontacts;
/**
* @var int
*
* @ORM\Column(name="modulo_rate_events", type="integer")
*/
private $mrateevents;
/**
* @var int
*
* @ORM\Column(name="modulo_my_badge", type="integer")
*/
private $mmybadge;
/**
* @var int
*
* @ORM\Column(name="modulo_event_questions", type="integer")
*/
private $meventquestions;
/**
* @var int
*
* @ORM\Column(name="modulo_gallery", type="integer")
*/
private $mgallery;
/**
* @var int
*
* @ORM\Column(name="modulo_games", type="integer")
*/
private $mgames;
/**
* @var int
*
* @ORM\Column(name="modulo_flights", type="integer")
*/
private $mflights;
/**
* @var int
*
* @ORM\Column(name="modulo_rates", type="integer")
*/
private $mrates;
/**
* @var int
*
* @ORM\Column(name="modulo_video", type="integer")
*/
private $mvideo;
/**
* @var int
*
* @ORM\Column(name="modulo_video_collage", type="integer")
*/
private $mvideocollage;
/**
* @var bool
*
* @ORM\Column(name="mchats", type="boolean")
*/
private $mchats;
/**
* @var bool
*
* @ORM\Column(name="mforum", type="boolean")
*/
private $mforum;
/**
* @var bool
*
* @ORM\Column(name="msocial", type="boolean")
*/
private $msocial;
/**
* @var bool
*
* @ORM\Column(name="mscancard", type="boolean")
*/
private $mscancard;
/**
* @var bool
*
* @ORM\Column(name="mattendants", type="boolean")
*/
private $mattendants;
/**
* @var bool
*
* @ORM\Column(name="mtransfer", type="boolean")
*/
private $mtransfer;
/**
* @var bool
*
* @ORM\Column(name="mroominglist", type="boolean")
*/
private $mroominglist;
/**
* @var bool
*
* @ORM\Column(name="mreservationhotel", type="boolean")
*/
private $mreservationhotel;
/**
* @var bool
*
* @ORM\Column(name="mavtechnical", type="boolean")
*/
private $mavtechnical;
/**
* @var bool
*
* @ORM\Column(name="modulo_supplier", type="boolean")
*/
private $msupplier;
/**
* @var bool
*
* @ORM\Column(name="modulo_activity", type="boolean")
*/
private $mactivity;
/**
* @var bool
*
* @ORM\Column(name="modulo_seating", type="boolean")
*/
private $mseating;
/**
* @var bool
*
* @ORM\Column(name="modulo_itinerary_flight", type="boolean")
*/
private $mitineraryflight;
/**
* @var bool
*
* @ORM\Column(name="modulo_gds_flight", type="boolean")
*/
private $mgdsflight;
/**
* @var bool
*
* @ORM\Column(name="modulo_admin_lounges", type="boolean")
*/
private $madminlounges;
/**
* @var bool
*
* @ORM\Column(name="modulo_news_promotions", type="boolean")
*/
private $mnewspromotions;
/**
* @var bool
*
* @ORM\Column(name="modulo_sponsors", type="boolean")
*/
private $msponsors;
/**
* @var bool
*
* @ORM\Column(name="modulo_package_sale", type="boolean")
*/
private $mpackagesale;
/**
* @var bool
*
* @ORM\Column(name="modulo_parking", type="boolean")
*/
private $mparking;
/**
* @var bool
*
* @ORM\Column(name="modulo_product_presentation", type="boolean")
*/
private $mproductpresentation;
/**
* @var bool
*
* @ORM\Column(name="modulo_schedule", type="boolean")
*/
private $mschedule;
/**
* @var bool
*
* @ORM\Column(name="modulo_selfie", type="boolean")
*/
private $mselfie;
/**
* @var bool
*
* @ORM\Column(name="modulo_taparally", type="boolean")
*/
private $mtaparally;
/**
* @var bool
*
* @ORM\Column(name="modulo_virtualevent", type="boolean")
*/
private $mvirtualevent;
/**
* @var bool
*
* @ORM\Column(name="modulo_partners", type="boolean")
*/
private $mpartners;
/**
* @var bool
*
* @ORM\Column(name="modulo_register", type="boolean")
*/
private $mregister;
/**
* @var bool
*
* @ORM\Column(name="modulo_surveys", type="boolean")
*/
private $msurveys;
/**
* @var bool
*
* @ORM\Column(name="modulo_mads", type="boolean")
*/
private $mmads;
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set team
*
* @param string $team
*
* @return SettingsRol
*/
public function setTeam($team)
{
$this->team = $team;
return $this;
}
/**
* Get team
*
* @return string
*/
public function getTeam()
{
return $this->team;
}
/**
* Set rol
*
* @param string $rol
*
* @return SettingsRol
*/
public function setRol($rol)
{
$this->rol = $rol;
return $this;
}
/**
* Get rol
*
* @return string
*/
public function getRol()
{
return $this->rol;
}
/**
* Set mmyflight
*
* @param integer $mmyflight
*
* @return SettingsRol
*/
public function setMmyflight($mmyflight)
{
$this->mmyflight = $mmyflight;
return $this;
}
/**
* Get mmyflight
*
* @return integer
*/
public function getMmyflight()
{
return $this->mmyflight;
}
/**
* Set mhotel
*
* @param integer $mhotel
*
* @return SettingsRol
*/
public function setMhotel($mhotel)
{
$this->mhotel = $mhotel;
return $this;
}
/**
* Get mhotel
*
* @return integer
*/
public function getMhotel()
{
return $this->mhotel;
}
/**
* Set magenda
*
* @param integer $magenda
*
* @return SettingsRol
*/
public function setMagenda($magenda)
{
$this->magenda = $magenda;
return $this;
}
/**
* Get magenda
*
* @return integer
*/
public function getMagenda()
{
return $this->magenda;
}
/**
* Set mspeakers
*
* @param integer $mspeakers
*
* @return SettingsRol
*/
public function setMspeakers($mspeakers)
{
$this->mspeakers = $mspeakers;
return $this;
}
/**
* Get mspeakers
*
* @return integer
*/
public function getMspeakers()
{
return $this->mspeakers;
}
/**
* Set mdocuments
*
* @param integer $mdocuments
*
* @return SettingsRol
*/
public function setMdocuments($mdocuments)
{
$this->mdocuments = $mdocuments;
return $this;
}
/**
* Get mdocuments
*
* @return integer
*/
public function getMdocuments()
{
return $this->mdocuments;
}
/**
* Set mlocations
*
* @param integer $mlocations
*
* @return SettingsRol
*/
public function setMlocations($mlocations)
{
$this->mlocations = $mlocations;
return $this;
}
/**
* Get mlocations
*
* @return integer
*/
public function getMlocations()
{
return $this->mlocations;
}
/**
* Set mcontacts
*
* @param integer $mcontacts
*
* @return SettingsRol
*/
public function setMcontacts($mcontacts)
{
$this->mcontacts = $mcontacts;
return $this;
}
/**
* Get mcontacts
*
* @return integer
*/
public function getMcontacts()
{
return $this->mcontacts;
}
/**
* Set mrateevents
*
* @param integer $mrateevents
*
* @return SettingsRol
*/
public function setMrateevents($mrateevents)
{
$this->mrateevents = $mrateevents;
return $this;
}
/**
* Get mrateevents
*
* @return integer
*/
public function getMrateevents()
{
return $this->mrateevents;
}
/**
* Set mmybadge
*
* @param integer $mmybadge
*
* @return SettingsRol
*/
public function setMmybadge($mmybadge)
{
$this->mmybadge = $mmybadge;
return $this;
}
/**
* Get mmybadge
*
* @return integer
*/
public function getMmybadge()
{
return $this->mmybadge;
}
/**
* Set meventquestions
*
* @param integer $meventquestions
*
* @return SettingsRol
*/
public function setMeventquestions($meventquestions)
{
$this->meventquestions = $meventquestions;
return $this;
}
/**
* Get meventquestions
*
* @return integer
*/
public function getMeventquestions()
{
return $this->meventquestions;
}
/**
* Set madmin
*
* @param integer $madmin
*
* @return SettingsRol
*/
public function setMadmin($madmin)
{
$this->madmin = $madmin;
return $this;
}
/**
* Get madmin
*
* @return integer
*/
public function getMadmin()
{
return $this->madmin;
}
/**
* Set mgallery
*
* @param integer $mgallery
*
* @return SettingsRol
*/
public function setMgallery($mgallery)
{
$this->mgallery = $mgallery;
return $this;
}
/**
* Get mgallery
*
* @return integer
*/
public function getMgallery()
{
return $this->mgallery;
}
/**
* Set mgames
*
* @param integer $mgames
*
* @return SettingsRol
*/
public function setMgames($mgames)
{
$this->mgames = $mgames;
return $this;
}
/**
* Get mgames
*
* @return integer
*/
public function getMgames()
{
return $this->mgames;
}
/**
* Set mflights
*
* @param integer $mflights
*
* @return SettingsRol
*/
public function setMflights($mflights)
{
$this->mflights = $mflights;
return $this;
}
/**
* Get mflights
*
* @return integer
*/
public function getMflights()
{
return $this->mflights;
}
/**
* Set mrates
*
* @param integer $mrates
*
* @return SettingsRol
*/
public function setMrates($mrates)
{
$this->mrates = $mrates;
return $this;
}
/**
* Get mrates
*
* @return integer
*/
public function getMrates()
{
return $this->mrates;
}
/**
* Set mchats
*
* @param boolean $mchats
*
* @return SettingsRol
*/
public function setMchats($mchats)
{
$this->mchats = $mchats;
return $this;
}
/**
* Get mchats
*
* @return boolean
*/
public function getMchats()
{
return $this->mchats;
}
/**
* Set mforum
*
* @param boolean $mforum
*
* @return SettingsRol
*/
public function setMforum($mforum)
{
$this->mforum = $mforum;
return $this;
}
/**
* Get mforum
*
* @return boolean
*/
public function getMforum()
{
return $this->mforum;
}
/**
* Set msocial
*
* @param boolean $msocial
*
* @return SettingsRol
*/
public function setMsocial($msocial)
{
$this->msocial = $msocial;
return $this;
}
/**
* Get msocial
*
* @return boolean
*/
public function getMsocial()
{
return $this->msocial;
}
/**
* Set mscancard
*
* @param boolean $mscancard
*
* @return SettingsRol
*/
public function setMscancard($mscancard)
{
$this->mscancard = $mscancard;
return $this;
}
/**
* Get mscancard
*
* @return boolean
*/
public function getMscancard()
{
return $this->mscancard;
}
/**
* Set mattendants
*
* @param boolean $mattendants
*
* @return SettingsRol
*/
public function setMattendants($mattendants)
{
$this->mattendants = $mattendants;
return $this;
}
/**
* Get mattendants
*
* @return boolean
*/
public function getMattendants()
{
return $this->mattendants;
}
/**
* Set mtransfer
*
* @param boolean $mtransfer
*
* @return SettingsRol
*/
public function setMtransfer($mtransfer)
{
$this->mtransfer = $mtransfer;
return $this;
}
/**
* Get mtransfer
*
* @return boolean
*/
public function getMtransfer()
{
return $this->mtransfer;
}
/**
* Set mroominglist
*
* @param boolean $mroominglist
*
* @return SettingsRol
*/
public function setMroominglist($mroominglist)
{
$this->mroominglist = $mroominglist;
return $this;
}
/**
* Get mroominglist
*
* @return boolean
*/
public function getMroominglist()
{
return $this->mroominglist;
}
/**
* Set mreservationhotel
*
* @param boolean $mreservationhotel
*
* @return SettingsRol
*/
public function setMreservationhotel($mreservationhotel)
{
$this->mreservationhotel = $mreservationhotel;
return $this;
}
/**
* Get mreservationhotel
*
* @return boolean
*/
public function getMreservationhotel()
{
return $this->mreservationhotel;
}
/**
* Set mavtechnical
*
* @param boolean $mavtechnical
*
* @return SettingsRol
*/
public function setMavtechnical($mavtechnical)
{
$this->mavtechnical = $mavtechnical;
return $this;
}
/**
* Get mavtechnical
*
* @return boolean
*/
public function getMavtechnical()
{
return $this->mavtechnical;
}
/**
* Set msupplier
*
* @param boolean $msupplier
*
* @return SettingsRol
*/
public function setMsupplier($msupplier)
{
$this->msupplier = $msupplier;
return $this;
}
/**
* Get msupplier
*
* @return boolean
*/
public function getMsupplier()
{
return $this->msupplier;
}
/**
* Set mactivity
*
* @param boolean $mactivity
*
* @return SettingsRol
*/
public function setMactivity($mactivity)
{
$this->mactivity = $mactivity;
return $this;
}
/**
* Get mactivity
*
* @return boolean
*/
public function getMactivity()
{
return $this->mactivity;
}
/**
* Set mseating
*
* @param boolean $mseating
*
* @return SettingsRol
*/
public function setMseating($mseating)
{
$this->mseating = $mseating;
return $this;
}
/**
* Get mseating
*
* @return boolean
*/
public function getMseating()
{
return $this->mseating;
}
/**
* Set mitineraryflight
*
* @param boolean $mitineraryflight
*
* @return SettingsRol
*/
public function setMitineraryflight($mitineraryflight)
{
$this->mitineraryflight = $mitineraryflight;
return $this;
}
/**
* Get mitineraryflight
*
* @return boolean
*/
public function getMitineraryflight()
{
return $this->mitineraryflight;
}
/**
* Set mgdsflight
*
* @param boolean $mgdsflight
*
* @return SettingsRol
*/
public function setMgdsflight($mgdsflight)
{
$this->mgdsflight = $mgdsflight;
return $this;
}
/**
* Get mgdsflight
*
* @return boolean
*/
public function getMgdsflight()
{
return $this->mgdsflight;
}
/**
* Set madminlounges
*
* @param boolean $madminlounges
*
* @return SettingsRol
*/
public function setMadminlounges($madminlounges)
{
$this->madminlounges = $madminlounges;
return $this;
}
/**
* Get madminlounges
*
* @return boolean
*/
public function getMadminlounges()
{
return $this->madminlounges;
}
/**
* Set mnewspromotions
*
* @param boolean $mnewspromotions
*
* @return SettingsRol
*/
public function setMnewspromotions($mnewspromotions)
{
$this->mnewspromotions = $mnewspromotions;
return $this;
}
/**
* Get mnewspromotions
*
* @return boolean
*/
public function getMnewspromotions()
{
return $this->mnewspromotions;
}
/**
* Set msponsors
*
* @param boolean $msponsors
*
* @return SettingsRol
*/
public function setMsponsors($msponsors)
{
$this->msponsors = $msponsors;
return $this;
}
/**
* Get msponsors
*
* @return boolean
*/
public function getMsponsors()
{
return $this->msponsors;
}
/**
* Set mpackagesale
*
* @param boolean $mpackagesale
*
* @return SettingsRol
*/
public function setMpackagesale($mpackagesale)
{
$this->mpackagesale = $mpackagesale;
return $this;
}
/**
* Get mpackagesale
*
* @return boolean
*/
public function getMpackagesale()
{
return $this->mpackagesale;
}
/**
* Set mvideo
*
* @param integer $mvideo
*
* @return SettingsRol
*/
public function setMvideo($mvideo)
{
$this->mvideo = $mvideo;
return $this;
}
/**
* Get mvideo
*
* @return integer
*/
public function getMvideo()
{
return $this->mvideo;
}
/**
* Set mparking
*
* @param boolean $mparking
*
* @return SettingsRol
*/
public function setMparking($mparking)
{
$this->mparking = $mparking;
return $this;
}
/**
* Get mparking
*
* @return boolean
*/
public function getMparking()
{
return $this->mparking;
}
/**
* Set mproductpresentation
*
* @param boolean $mproductpresentation
*
* @return SettingsRol
*/
public function setMproductpresentation($mproductpresentation)
{
$this->mproductpresentation = $mproductpresentation;
return $this;
}
/**
* Get mproductpresentation
*
* @return boolean
*/
public function getMproductpresentation()
{
return $this->mproductpresentation;
}
/**
* Set mvideocollage
*
* @param integer $mvideocollage
*
* @return SettingsRol
*/
public function setMvideocollage($mvideocollage)
{
$this->mvideocollage = $mvideocollage;
return $this;
}
/**
* Get mvideocollage
*
* @return integer
*/
public function getMvideocollage()
{
return $this->mvideocollage;
}
/**
* Set mschedule
*
* @param integer $mschedule
*
* @return SettingsRol
*/
public function setMschedule($mschedule)
{
$this->mschedule = $mschedule;
return $this;
}
/**
* Get mschedule
*
* @return integer
*/
public function getMschedule()
{
return $this->mschedule;
}
/**
* Set mselfie
*
* @param integer $mselfie
*
* @return SettingsRol
*/
public function setMselfie($mselfie)
{
$this->mselfie = $mselfie;
return $this;
}
/**
* Get mselfie
*
* @return integer
*/
public function getMselfie()
{
return $this->mselfie;
}
/**
* Set mtaparally
*
* @param integer $mtaparally
*
* @return SettingsRol
*/
public function setMtaparally($mtaparally)
{
$this->mtaparally = $mtaparally;
return $this;
}
/**
* Get mtaparally
*
* @return integer
*/
public function getMtaparally()
{
return $this->mtaparally;
}
/**
* Set mvirtualevent
*
* @param integer $mvirtualevent
*
* @return SettingsRol
*/
public function setMvirtualevent($mvirtualevent)
{
$this->mvirtualevent = $mvirtualevent;
return $this;
}
/**
* Get mvirtualevent
*
* @return integer
*/
public function getMvirtualevent()
{
return $this->mvirtualevent;
}
/**
* Set mpartners
*
* @param integer $mpartners
*
* @return SettingsRol
*/
public function setMpartners($mpartners)
{
$this->mpartners = $mpartners;
return $this;
}
/**
* Get mpartners
*
* @return integer
*/
public function getMpartners()
{
return $this->mpartners;
}
/**
* Set mregister
*
* @param integer $mregister
*
* @return SettingsRol
*/
public function setMregister($mregister)
{
$this->mregister = $mregister;
return $this;
}
/**
* Get mregister
*
* @return integer
*/
public function getMregister()
{
return $this->mregister;
}
/**
* Set msurveys
*
* @param integer $msurveys
*
* @return SettingsRol
*/
public function setMsurveys($msurveys)
{
$this->msurveys = $msurveys;
return $this;
}
/**
* Get msurveys
*
* @return integer
*/
public function getMsurveys()
{
return $this->msurveys;
}
/**
* Set mmads
*
* @param integer $mmads
*
* @return SettingsRol
*/
public function setMmads($mmads)
{
$this->mmads = $mmads;
return $this;
}
/**
* Get mmads
*
* @return integer
*/
public function getMmads()
{
return $this->mmads;
}
}