src/Entity/Empresa.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Empresa
  6.  *
  7.  * @ORM\Table(name="empresa")
  8.  * @ORM\Entity(repositoryClass="App\Repository\EmpresaRepository")
  9.  */
  10. class Empresa {
  11.     /**
  12.      * @var integer
  13.      *
  14.      * @ORM\Column(name="empresa_id", type="integer", nullable=false)
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue(strategy="AUTO")
  17.      */
  18.     private $empresaId;
  19.     /**
  20.      * @var string
  21.      *
  22.      * @ORM\Column(name="nombre", type="string", length=255, nullable=false)
  23.      */
  24.     private $nombre;
  25.     /**
  26.      * @var string
  27.      *
  28.      * @ORM\Column(name="direccion", type="string", length=255, nullable=true)
  29.      */
  30.     private $direccion;
  31.     /**
  32.      * @var string
  33.      *
  34.      * @ORM\Column(name="ciudad", type="string", length=255, nullable=true)
  35.      */
  36.     private $ciudad;
  37.     /**
  38.      * @var string
  39.      *
  40.      * @ORM\Column(name="estado", type="string", length=255, nullable=true)
  41.      */
  42.     private $estado;
  43.     /**
  44.      * @var string
  45.      *
  46.      * @ORM\Column(name="codigo_postal", type="string", length=50, nullable=true)
  47.      */
  48.     private $codigoPostal;
  49.     /**
  50.      * @var string
  51.      *
  52.      * @ORM\Column(name="email", type="string", length=255, nullable=true)
  53.      */
  54.     private $email;
  55.     /**
  56.      * @var string
  57.      *
  58.      * @ORM\Column(name="telefono", type="string", length=50, nullable=true)
  59.      */
  60.     private $telefono;
  61.     /**
  62.      * @var string
  63.      *
  64.      * @ORM\Column(name="logo", type="string", length=255, nullable=true)
  65.      */
  66.     private $logo;
  67.     
  68.     /**
  69.      * @var string
  70.      *
  71.      * @ORM\Column(name="url", type="string", length=255, nullable=true)
  72.      */
  73.     private $url;
  74.     /**
  75.      * Get empresaId
  76.      *
  77.      * @return integer 
  78.      */
  79.     public function getEmpresaId() {
  80.         return $this->empresaId;
  81.     }
  82.     /**
  83.      * Set nombre
  84.      *
  85.      * @param string $nombre
  86.      * @return Empresa
  87.      */
  88.     public function setNombre($nombre) {
  89.         $this->nombre $nombre;
  90.         return $this;
  91.     }
  92.     /**
  93.      * Get nombre
  94.      *
  95.      * @return string 
  96.      */
  97.     public function getNombre() {
  98.         return $this->nombre;
  99.     }
  100.     /**
  101.      * Set direccion
  102.      *
  103.      * @param string $direccion
  104.      * @return Empresa
  105.      */
  106.     public function setDireccion($direccion)
  107.     {
  108.         $this->direccion $direccion;
  109.         return $this;
  110.     }
  111.     /**
  112.      * Get direccion
  113.      *
  114.      * @return string
  115.      */
  116.     public function getDireccion()
  117.     {
  118.         return $this->direccion;
  119.     }
  120.     /**
  121.      * Set ciudad
  122.      *
  123.      * @param string $ciudad
  124.      * @return Empresa
  125.      */
  126.     public function setCiudad($ciudad) {
  127.         $this->ciudad $ciudad;
  128.         return $this;
  129.     }
  130.     /**
  131.      * Get ciudad
  132.      *
  133.      * @return string
  134.      */
  135.     public function getCiudad() {
  136.         return $this->ciudad;
  137.     }
  138.     /**
  139.      * Set estado
  140.      *
  141.      * @param string $estado
  142.      * @return Empresa
  143.      */
  144.     public function setEstado($estado) {
  145.         $this->estado $estado;
  146.         return $this;
  147.     }
  148.     /**
  149.      * Get estado
  150.      *
  151.      * @return string
  152.      */
  153.     public function getEstado() {
  154.         return $this->estado;
  155.     }
  156.     /**
  157.      * Set logo
  158.      *
  159.      * @param string $logo
  160.      * @return Empresa
  161.      */
  162.     public function setLogo($logo) {
  163.         $this->logo $logo;
  164.         return $this;
  165.     }
  166.     /**
  167.      * Get logo
  168.      *
  169.      * @return string 
  170.      */
  171.     public function getLogo() {
  172.         return $this->logo;
  173.     }
  174.     
  175.     /**
  176.      * Set url
  177.      *
  178.      * @param string $url
  179.      * @return Empresa
  180.      */
  181.     public function setUrl($url) {
  182.         $this->url $url;
  183.         return $this;
  184.     }
  185.     /**
  186.      * Get url
  187.      *
  188.      * @return string 
  189.      */
  190.     public function getUrl() {
  191.         return $this->url;
  192.     }
  193.     public function getCodigoPostal()
  194.     {
  195.         return $this->codigoPostal;
  196.     }
  197.     public function setCodigoPostal($codigoPostal)
  198.     {
  199.         $this->codigoPostal $codigoPostal;
  200.     }
  201.     public function getEmail()
  202.     {
  203.         return $this->email;
  204.     }
  205.     public function setEmail($email)
  206.     {
  207.         $this->email $email;
  208.     }
  209.     public function getTelefono()
  210.     {
  211.         return $this->telefono;
  212.     }
  213.     public function setTelefono($telefono)
  214.     {
  215.         $this->telefono $telefono;
  216.     }
  217. }