<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Empresa
*
* @ORM\Table(name="empresa")
* @ORM\Entity(repositoryClass="App\Repository\EmpresaRepository")
*/
class Empresa {
/**
* @var integer
*
* @ORM\Column(name="empresa_id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $empresaId;
/**
* @var string
*
* @ORM\Column(name="nombre", type="string", length=255, nullable=false)
*/
private $nombre;
/**
* @var string
*
* @ORM\Column(name="direccion", type="string", length=255, nullable=true)
*/
private $direccion;
/**
* @var string
*
* @ORM\Column(name="ciudad", type="string", length=255, nullable=true)
*/
private $ciudad;
/**
* @var string
*
* @ORM\Column(name="estado", type="string", length=255, nullable=true)
*/
private $estado;
/**
* @var string
*
* @ORM\Column(name="codigo_postal", type="string", length=50, nullable=true)
*/
private $codigoPostal;
/**
* @var string
*
* @ORM\Column(name="email", type="string", length=255, nullable=true)
*/
private $email;
/**
* @var string
*
* @ORM\Column(name="telefono", type="string", length=50, nullable=true)
*/
private $telefono;
/**
* @var string
*
* @ORM\Column(name="logo", type="string", length=255, nullable=true)
*/
private $logo;
/**
* @var string
*
* @ORM\Column(name="url", type="string", length=255, nullable=true)
*/
private $url;
/**
* Get empresaId
*
* @return integer
*/
public function getEmpresaId() {
return $this->empresaId;
}
/**
* Set nombre
*
* @param string $nombre
* @return Empresa
*/
public function setNombre($nombre) {
$this->nombre = $nombre;
return $this;
}
/**
* Get nombre
*
* @return string
*/
public function getNombre() {
return $this->nombre;
}
/**
* Set direccion
*
* @param string $direccion
* @return Empresa
*/
public function setDireccion($direccion)
{
$this->direccion = $direccion;
return $this;
}
/**
* Get direccion
*
* @return string
*/
public function getDireccion()
{
return $this->direccion;
}
/**
* Set ciudad
*
* @param string $ciudad
* @return Empresa
*/
public function setCiudad($ciudad) {
$this->ciudad = $ciudad;
return $this;
}
/**
* Get ciudad
*
* @return string
*/
public function getCiudad() {
return $this->ciudad;
}
/**
* Set estado
*
* @param string $estado
* @return Empresa
*/
public function setEstado($estado) {
$this->estado = $estado;
return $this;
}
/**
* Get estado
*
* @return string
*/
public function getEstado() {
return $this->estado;
}
/**
* Set logo
*
* @param string $logo
* @return Empresa
*/
public function setLogo($logo) {
$this->logo = $logo;
return $this;
}
/**
* Get logo
*
* @return string
*/
public function getLogo() {
return $this->logo;
}
/**
* Set url
*
* @param string $url
* @return Empresa
*/
public function setUrl($url) {
$this->url = $url;
return $this;
}
/**
* Get url
*
* @return string
*/
public function getUrl() {
return $this->url;
}
public function getCodigoPostal()
{
return $this->codigoPostal;
}
public function setCodigoPostal($codigoPostal)
{
$this->codigoPostal = $codigoPostal;
}
public function getEmail()
{
return $this->email;
}
public function setEmail($email)
{
$this->email = $email;
}
public function getTelefono()
{
return $this->telefono;
}
public function setTelefono($telefono)
{
$this->telefono = $telefono;
}
}