<?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 string
* @Assert\NotBlank()
* @ORM\Column(name="weight", type="string", length=255)
*/
private $weight;
/**
* @var int
*
* @ORM\Column(name="modulo_cliente", type="integer")
*/
private $mcliente;
/**
* @var int
*
* @ORM\Column(name="modulo_proveedor", type="integer")
*/
private $mproveedor;
/**
* @var int
*
* @ORM\Column(name="modulo_eventos", type="integer")
*/
private $meventos;
/**
* @var int
*
* @ORM\Column(name="modulo_stat", type="integer")
*/
private $mstat;
/**
* @var int
*
* @ORM\Column(name="modulo_admin", type="integer")
*/
private $madmin;
/**
* @var int
*
* @ORM\Column(name="modulo_comercial", type="integer")
*/
private $mcomercial;
/**
* @var int
*
* @ORM\Column(name="modulo_vacation", type="integer")
*/
private $mvacation;
/**
* @var int
*
* @ORM\Column(name="modulo_communication", type="integer")
*/
private $mcommunication;
/**
* @var int
*
* @ORM\Column(name="modulo_greenpatio", type="integer")
*/
private $mgreenpatio;
/**
* @var int
*
* @ORM\Column(name="modulo_develup", type="integer")
*/
private $mdevelup;
/**
* @var int
*
* @ORM\Column(name="modulo_avexpress", type="integer")
*/
private $mavexpress;
/**
* @var int
*
* @ORM\Column(name="modulo_higotrigo", type="integer")
*/
private $mhigotrigo;
/**
* 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 weight
*
* @param string $weight
*
* @return SettingsRol
*/
public function setWeight($weight)
{
$this->weight = $weight;
return $this;
}
/**
* Get weight
*
* @return string
*/
public function getWeight()
{
return $this->weight;
}
/**
* Set mcliente
*
* @param integer $mcliente
*
* @return SettingsRol
*/
public function setMcliente($mcliente)
{
$this->mcliente = $mcliente;
return $this;
}
/**
* Get mcliente
*
* @return integer
*/
public function getMcliente()
{
return $this->mcliente;
}
/**
* Set mproveedor
*
* @param integer $mproveedor
*
* @return SettingsRol
*/
public function setMproveedor($mproveedor)
{
$this->mproveedor = $mproveedor;
return $this;
}
/**
* Get mproveedor
*
* @return integer
*/
public function getMproveedor()
{
return $this->mproveedor;
}
/**
* Set meventos
*
* @param integer $meventos
*
* @return SettingsRol
*/
public function setMeventos($meventos)
{
$this->meventos = $meventos;
return $this;
}
/**
* Get meventos
*
* @return integer
*/
public function getMeventos()
{
return $this->meventos;
}
/**
* Set mstat
*
* @param integer $mstat
*
* @return SettingsRol
*/
public function setMstat($mstat)
{
$this->mstat = $mstat;
return $this;
}
/**
* Get mstat
*
* @return integer
*/
public function getMstat()
{
return $this->mstat;
}
/**
* 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 mcomercial
*
* @param integer $mcomercial
*
* @return SettingsRol
*/
public function setMcomercial($mcomercial)
{
$this->mcomercial = $mcomercial;
return $this;
}
/**
* Get mcomercial
*
* @return integer
*/
public function getMcomercial()
{
return $this->mcomercial;
}
/**
* Set mvacation
*
* @param integer $mvacation
*
* @return SettingsRol
*/
public function setMvacation($mvacation)
{
$this->mvacation = $mvacation;
return $this;
}
/**
* Get mvacation
*
* @return integer
*/
public function getMvacation()
{
return $this->mvacation;
}
/**
* Set mcommunication
*
* @param integer $mcommunication
*
* @return SettingsRol
*/
public function setMcommunication($mcommunication)
{
$this->mcommunication = $mcommunication;
return $this;
}
/**
* Get mcommunication
*
* @return integer
*/
public function getMcommunication()
{
return $this->mcommunication;
}
/**
* Set mgreenpatio
*
* @param integer $mgreenpatio
*
* @return SettingsRol
*/
public function setMgreenpatio($mgreenpatio)
{
$this->mgreenpatio = $mgreenpatio;
return $this;
}
/**
* Get mgreenpatio
*
* @return integer
*/
public function getMgreenpatio()
{
return $this->mgreenpatio;
}
/**
* Set mdevelup
*
* @param integer $mdevelup
*
* @return SettingsRol
*/
public function setMdevelup($mdevelup)
{
$this->mdevelup = $mdevelup;
return $this;
}
/**
* Get mdevelup
*
* @return integer
*/
public function getMdevelup()
{
return $this->mdevelup;
}
/**
* Set mavexpress
*
* @param integer $mavexpress
*
* @return SettingsRol
*/
public function setMavexpress($mavexpress)
{
$this->mavexpress = $mavexpress;
return $this;
}
/**
* Get mavexpress
*
* @return integer
*/
public function getMavexpress()
{
return $this->mavexpress;
}
/**
* Set mhigotrigo
*
* @param integer $mhigotrigo
*
* @return SettingsRol
*/
public function setMhigotrigo($mhigotrigo)
{
$this->mhigotrigo = $mhigotrigo;
return $this;
}
/**
* Get mhigotrigo
*
* @return integer
*/
public function getMhigotrigo()
{
return $this->mhigotrigo;
}
}