src/Entity/CvdAdvices.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * CvdAdvices
  6.  *
  7.  * @ORM\Table(name="cvd_advices")
  8.  * @ORM\Entity(repositoryClass="App\Repository\CvdAdvicesRepository")
  9.  */
  10. class CvdAdvices
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer", options={"unsigned":true})
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var int
  22.      *
  23.      * @ORM\Column(name="language_id", type="integer", options={"unsigned":true})
  24.      */
  25.     private $languageId;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="advice", type="text")
  30.      */
  31.     private $advice;
  32.     /**
  33.      * @var bool
  34.      *
  35.      * @ORM\Column(name="smoker", type="boolean")
  36.      */
  37.     private $smoker;
  38.     /**
  39.      * @var bool
  40.      *
  41.      * @ORM\Column(name="non_smoker", type="boolean")
  42.      */
  43.     private $nonSmoker;
  44.     /**
  45.      * @var bool
  46.      *
  47.      * @ORM\Column(name="imc_exceeded", type="boolean")
  48.      */
  49.     private $imcExceeded;
  50.     /**
  51.      * @var bool
  52.      *
  53.      * @ORM\Column(name="is_default", type="boolean")
  54.      */
  55.     private $isDefault;
  56.     /**
  57.      * @var int
  58.      *
  59.      * @ORM\Column(name="country_id", type="integer", options={"unsigned":true})
  60.      */
  61.     private $countryId;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="title", type="text")
  66.      */
  67.     private $title;
  68.     /**
  69.      * @var bool
  70.      *
  71.      * @ORM\Column(name="pro_version", type="boolean", options={"default": false})
  72.      */
  73.     private $proVersion false;
  74.     /**
  75.      * @var string
  76.      *
  77.      * @ORM\Column(name="image", type="text")
  78.      */
  79.     private $image;
  80.     /**
  81.      * @ORM\Column(type="integer")
  82.      */
  83.     private $diabetes_status;
  84.     /**
  85.      * Get id
  86.      *
  87.      * @return int
  88.      */
  89.     public function getId()
  90.     {
  91.         return $this->id;
  92.     }
  93.     /**
  94.      * Set languageId
  95.      *
  96.      * @param integer $languageId
  97.      *
  98.      * @return CvdAdvices
  99.      */
  100.     public function setLanguageId($languageId)
  101.     {
  102.         $this->languageId $languageId;
  103.         return $this;
  104.     }
  105.     /**
  106.      * Get languageId
  107.      *
  108.      * @return int
  109.      */
  110.     public function getLanguageId()
  111.     {
  112.         return $this->languageId;
  113.     }
  114.     /**
  115.      * Set proVersion
  116.      *
  117.      * @param bool $proVersion
  118.      *
  119.      * @return CvdAdvices
  120.      */
  121.     public function setProVersion($proVersion)
  122.     {
  123.         $this->proVersion $proVersion;
  124.         return $this;
  125.     }
  126.     /**
  127.      * Get proVersion
  128.      *
  129.      * @return bool
  130.      */
  131.     public function getProVersion()
  132.     {
  133.         return $this->proVersion;
  134.     }
  135.     /**
  136.      * Set advice
  137.      *
  138.      * @param string $advice
  139.      *
  140.      * @return CvdAdvices
  141.      */
  142.     public function setAdvice($advice)
  143.     {
  144.         $this->advice $advice;
  145.         return $this;
  146.     }
  147.     /**
  148.      * Get advice
  149.      *
  150.      * @return string
  151.      */
  152.     public function getAdvice()
  153.     {
  154.         return $this->advice;
  155.     }
  156.     /**
  157.      * Set smoker
  158.      *
  159.      * @param boolean $smoker
  160.      *
  161.      * @return CvdAdvices
  162.      */
  163.     public function setSmoker($smoker)
  164.     {
  165.         $this->smoker $smoker;
  166.         return $this;
  167.     }
  168.     /**
  169.      * Get smoker
  170.      *
  171.      * @return bool
  172.      */
  173.     public function getSmoker()
  174.     {
  175.         return $this->smoker;
  176.     }
  177.     /**
  178.      * @return bool
  179.      */
  180.     public function getImcExceeded()
  181.     {
  182.         return $this->imcExceeded;
  183.     }
  184.     /**
  185.      * @param bool $imcExceeded
  186.      */
  187.     public function setImcExceeded(bool $imcExceeded)
  188.     {
  189.         $this->imcExceeded $imcExceeded;
  190.         return $this;
  191.     }
  192.     /**
  193.      * @return bool
  194.      */
  195.     public function getIsDefault(): bool
  196.     {
  197.         return $this->isDefault;
  198.     }
  199.     /**
  200.      * @param bool $isDefault
  201.      */
  202.     public function setIsDefault(bool $isDefault)
  203.     {
  204.         $this->isDefault $isDefault;
  205.         return $this;
  206.     }
  207.     /**
  208.      * @return bool
  209.      */
  210.     public function getNonSmoker(): bool
  211.     {
  212.         return $this->nonSmoker;
  213.     }
  214.     /**
  215.      * @param bool $nonSmoker
  216.      */
  217.     public function setNonSmoker(bool $nonSmoker): void
  218.     {
  219.         $this->nonSmoker $nonSmoker;
  220.     }
  221.     /**
  222.      * @return int
  223.      */
  224.     public function getCountryId(): int
  225.     {
  226.         return $this->countryId;
  227.     }
  228.     /**
  229.      * @param int $countryId
  230.      */
  231.     public function setCountryId(int $countryId): void
  232.     {
  233.         $this->countryId $countryId;
  234.     }
  235.     public function setTitle($title)
  236.     {
  237.         $this->title $title;
  238.         return $this;
  239.     }
  240.     public function getTitle()
  241.     {
  242.         return $this->title;
  243.     }
  244.     public function setImage($image)
  245.     {
  246.         $this->image $image;
  247.         return $this;
  248.     }
  249.     public function getImage()
  250.     {
  251.         return $this->image;
  252.     }
  253.     public function getDiabetesStatus(): ?int
  254.     {
  255.         return $this->diabetes_status;
  256.     }
  257.     public function setDiabetesStatus(int $diabetes_status): self
  258.     {
  259.         $this->diabetes_status $diabetes_status;
  260.         return $this;
  261.     }
  262. }