src/Entity/NonHdlCholesterol.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * NonHdlCholesterol
  6.  *
  7.  * @ORM\Table(name="non_hdl_cholesterol")
  8.  * @ORM\Entity(repositoryClass="App\Repository\NonHdlCholesterolRepository")
  9.  */
  10. class NonHdlCholesterol
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="non_hdl_cholesterol", type="string", length=255)
  24.      */
  25.     private $nonHdlCholesterol;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="from_val", type="smallint", options={"unsigned":true})
  30.      */
  31.     private $fromVal;
  32.     /**
  33.      * @var int
  34.      *
  35.      * @ORM\Column(name="to_val", type="smallint", options={"unsigned":true})
  36.      */
  37.     private $toVal;
  38.     /**
  39.      * Get id
  40.      *
  41.      * @return int
  42.      */
  43.     public function getId()
  44.     {
  45.         return $this->id;
  46.     }
  47.     /**
  48.      * Set nonHdlCholesterol
  49.      *
  50.      * @param string $nonHdlCholesterol
  51.      *
  52.      * @return NonHdlCholesterol
  53.      */
  54.     public function setNonHdlCholesterol($nonHdlCholesterol)
  55.     {
  56.         $this->nonHdlCholesterol $nonHdlCholesterol;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get nonHdlCholesterol
  61.      *
  62.      * @return string
  63.      */
  64.     public function getNonHdlCholesterol()
  65.     {
  66.         return $this->nonHdlCholesterol;
  67.     }
  68.     /**
  69.      * Set fromVal
  70.      *
  71.      * @param integer $fromVal
  72.      *
  73.      * @return NonHdlCholesterol
  74.      */
  75.     public function setFromVal($fromVal)
  76.     {
  77.         $this->fromVal $fromVal;
  78.         return $this;
  79.     }
  80.     /**
  81.      * Get fromVal
  82.      *
  83.      * @return integer
  84.      */
  85.     public function getFromVal()
  86.     {
  87.         return $this->fromVal;
  88.     }
  89.     /**
  90.      * Set toVal
  91.      *
  92.      * @param integer $toVal
  93.      *
  94.      * @return NonHdlCholesterol
  95.      */
  96.     public function setToVal($toVal)
  97.     {
  98.         $this->toVal $toVal;
  99.         return $this;
  100.     }
  101.     /**
  102.      * Get toVal
  103.      *
  104.      * @return integer
  105.      */
  106.     public function getToVal()
  107.     {
  108.         return $this->toVal;
  109.     }
  110. }