src/AppBundle/Entity/Abc.php line 14
<?php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* ABC.
*
* @ORM\Table(name="abc_productos")
* @ORM\Entity(repositoryClass="AppBundle\Repository\AbcRepository")
* @ORM\HasLifecycleCallbacks()
*/
class Abc
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="denominacion", type="string", length=255)
*/
private $denominacion;
/**
* @var string
*
* @ORM\Column(name="factor", type="string", length=255)
*/
private $factor;
/**
* Get the value of id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set the value of id
*
* @param int $id
*
* @return self
*/
public function setId(int $id)
{
$this->id = $id;
return $this;
}
/**
* Get the value of factor
*
* @return string
*/
public function getFactor()
{
return $this->factor;
}
/**
* Get the value of denominacion
*
* @return string
*/
public function getDenominacion()
{
return $this->denominacion;
}
/**
* Set the value of denominacion
*
* @param string $denominacion
*
* @return self
*/
public function setDenominacion(string $denominacion)
{
$this->denominacion = $denominacion;
return $this;
}
/**
* Set the value of factor
*
* @param string $factor
*
* @return self
*/
public function setFactor(string $factor)
{
$this->factor = $factor;
return $this;
}
}