<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/** * NonHdlCholesterol * * @ORM\Table(name="non_hdl_cholesterol") * @ORM\Entity(repositoryClass="App\Repository\NonHdlCholesterolRepository") */class NonHdlCholesterol{ /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var string * * @ORM\Column(name="non_hdl_cholesterol", type="string", length=255) */ private $nonHdlCholesterol; /** * @var int * * @ORM\Column(name="from_val", type="smallint", options={"unsigned":true}) */ private $fromVal; /** * @var int * * @ORM\Column(name="to_val", type="smallint", options={"unsigned":true}) */ private $toVal; /** * Get id * * @return int */ public function getId() { return $this->id; } /** * Set nonHdlCholesterol * * @param string $nonHdlCholesterol * * @return NonHdlCholesterol */ public function setNonHdlCholesterol($nonHdlCholesterol) { $this->nonHdlCholesterol = $nonHdlCholesterol; return $this; } /** * Get nonHdlCholesterol * * @return string */ public function getNonHdlCholesterol() { return $this->nonHdlCholesterol; } /** * Set fromVal * * @param integer $fromVal * * @return NonHdlCholesterol */ public function setFromVal($fromVal) { $this->fromVal = $fromVal; return $this; } /** * Get fromVal * * @return integer */ public function getFromVal() { return $this->fromVal; } /** * Set toVal * * @param integer $toVal * * @return NonHdlCholesterol */ public function setToVal($toVal) { $this->toVal = $toVal; return $this; } /** * Get toVal * * @return integer */ public function getToVal() { return $this->toVal; }}