src/AppBundle/Entity/Abc.php line 14

  1. <?php
  2. namespace AppBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ABC.
  6.  *
  7.  * @ORM\Table(name="abc_productos")
  8.  * @ORM\Entity(repositoryClass="AppBundle\Repository\AbcRepository")
  9.  * @ORM\HasLifecycleCallbacks()
  10.  */
  11. class Abc
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\Column(name="id", type="integer")
  17.      * @ORM\Id
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="denominacion", type="string", length=255)
  24.      */
  25.     private $denominacion;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="factor", type="string", length=255)
  30.      */
  31.     private $factor;
  32.     /**
  33.      * Get the value of id
  34.      *
  35.      * @return  int
  36.      */
  37.     public function getId()
  38.     {
  39.         return $this->id;
  40.     }
  41.     /**
  42.      * Set the value of id
  43.      *
  44.      * @param  int  $id
  45.      *
  46.      * @return  self
  47.      */
  48.     public function setId(int $id)
  49.     {
  50.         $this->id $id;
  51.         return $this;
  52.     }
  53.     /**
  54.      * Get the value of factor
  55.      *
  56.      * @return  string
  57.      */
  58.     public function getFactor()
  59.     {
  60.         return $this->factor;
  61.     }
  62.     /**
  63.      * Get the value of denominacion
  64.      *
  65.      * @return  string
  66.      */
  67.     public function getDenominacion()
  68.     {
  69.         return $this->denominacion;
  70.     }
  71.     /**
  72.      * Set the value of denominacion
  73.      *
  74.      * @param  string  $denominacion
  75.      *
  76.      * @return  self
  77.      */
  78.     public function setDenominacion(string $denominacion)
  79.     {
  80.         $this->denominacion $denominacion;
  81.         return $this;
  82.     }
  83.     /**
  84.      * Set the value of factor
  85.      *
  86.      * @param  string  $factor
  87.      *
  88.      * @return  self
  89.      */
  90.     public function setFactor(string $factor)
  91.     {
  92.         $this->factor $factor;
  93.         return $this;
  94.     }
  95. }