src/Entity/Nacex.php line 14
- <?php
- namespace App\Entity;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Nacex
- *
- * @ORM\Table()
- * @ORM\Entity
- * @ORM\HasLifecycleCallbacks()
- */
- class Nacex
- {
- /**
- * @var integer
- *
- * @ORM\Column(name="id", type="integer")
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="AUTO")
- */
- private $id;
- /**
- * @var string
- *
- * @ORM\Column(name="exp_cod", type="string", length=255, nullable=false)
- */
- private $exp_cod;
- /**
- * @var string
- *
- * @ORM\Column(name="ag_cod_num_exp", type="string", length=255)
- */
- private $ag_cod_num_exp;
- /**
- * @ORM\Column(name="color", type="string", length=255)
- */
- private $color;
- /**
- * @var string
- *
- * @ORM\Column(name="ent_ruta", type="string", length=255)
- */
- private $ent_ruta;
- /**
- * @var string
- *
- * @ORM\Column(name="ent_cod", type="string", length=255)
- */
- private $ent_cod;
- /**
- * @var string
- *
- * @ORM\Column(name="ent_nom", type="string", length=255)
- */
- private $ent_nom;
- /**
- * @var string
- *
- * @ORM\Column(name="ent_tlf", type="string", length=255)
- */
- private $ent_tlf;
- /**
- * @var string
- *
- * @ORM\Column(name="serv", type="string", length=255)
- */
- private $serv;
- /**
- * @var string
- *
- * @ORM\Column(name="hora_entrega", type="string", length=255)
- */
- private $hora_entrega;
- /**
- * @var string
- *
- * @ORM\Column(name="barcode", type="string", length=255)
- */
- private $barcode;
- /**
- * @var string
- *
- * @ORM\Column(name="fecha_objetivo", type="string", length=255)
- */
- private $fecha_objetivo;
- /**
- * @var string
- *
- * @ORM\Column(name="cambios", type="string", length=255)
- */
- private $cambios;
- /**
- * @var string
- *
- * @ORM\Column(name="estado", type="string", length=255)
- */
- private $estado;
- /**
- * @var string
- *
- * @ORM\Column(name="referencia", type="string", length=255)
- */
- private $referencia;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * @return string
- */
- public function getAgCodNumExp()
- {
- return $this->ag_cod_num_exp;
- }
- /**
- * @param string $ag_cod_num_exp
- */
- public function setAgCodNumExp($ag_cod_num_exp)
- {
- $this->ag_cod_num_exp = $ag_cod_num_exp;
- }
- /**
- * @return string
- */
- public function getBarcode()
- {
- return $this->barcode;
- }
- /**
- * @param string $barcode
- */
- public function setBarcode($barcode)
- {
- $this->barcode = $barcode;
- }
- /**
- * @return string
- */
- public function getCambios()
- {
- return $this->cambios;
- }
- /**
- * @param string $cambios
- */
- public function setCambios($cambios)
- {
- $this->cambios = $cambios;
- }
- /**
- * @return mixed
- */
- public function getColor()
- {
- return $this->color;
- }
- /**
- * @param mixed $color
- */
- public function setColor($color)
- {
- $this->color = $color;
- }
- /**
- * @return string
- */
- public function getEntCod()
- {
- return $this->ent_cod;
- }
- /**
- * @param string $ent_cod
- */
- public function setEntCod($ent_cod)
- {
- $this->ent_cod = $ent_cod;
- }
- /**
- * @return string
- */
- public function getEntNom()
- {
- return $this->ent_nom;
- }
- /**
- * @param string $ent_nom
- */
- public function setEntNom($ent_nom)
- {
- $this->ent_nom = $ent_nom;
- }
- /**
- * @return string
- */
- public function getEntRuta()
- {
- return $this->ent_ruta;
- }
- /**
- * @param string $ent_ruta
- */
- public function setEntRuta($ent_ruta)
- {
- $this->ent_ruta = $ent_ruta;
- }
- /**
- * @return string
- */
- public function getEntTlf()
- {
- return $this->ent_tlf;
- }
- /**
- * @param string $ent_tlf
- */
- public function setEntTlf($ent_tlf)
- {
- $this->ent_tlf = $ent_tlf;
- }
- /**
- * @return string
- */
- public function getExpCod()
- {
- return $this->exp_cod;
- }
- /**
- * @param string $exp_cod
- */
- public function setExpCod($exp_cod)
- {
- $this->exp_cod = $exp_cod;
- }
- /**
- * @return string
- */
- public function getFechaObjetivo()
- {
- return $this->fecha_objetivo;
- }
- /**
- * @param string $fecha_objetivo
- */
- public function setFechaObjetivo($fecha_objetivo)
- {
- $this->fecha_objetivo = $fecha_objetivo;
- }
- /**
- * @return string
- */
- public function getHoraEntrega()
- {
- return $this->hora_entrega;
- }
- /**
- * @param string $hora_entrega
- */
- public function setHoraEntrega($hora_entrega)
- {
- $this->hora_entrega = $hora_entrega;
- }
- /**
- * @return string
- */
- public function getServ()
- {
- return $this->serv;
- }
- /**
- * @param string $serv
- */
- public function setServ($serv)
- {
- $this->serv = $serv;
- }
- /**
- * @return string
- */
- public function getEstado()
- {
- return $this->estado;
- }
- /**
- * @param string $estado
- */
- public function setEstado($estado)
- {
- $this->estado = $estado;
- }
- /**
- * @return string
- */
- public function getReferencia()
- {
- return $this->referencia;
- }
- /**
- * @param string $referencia
- */
- public function setReferencia($referencia)
- {
- $this->referencia = $referencia;
- }
- }