src/Entity/Menus.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Menus
  6.  *
  7.  * @ORM\Table(name="menus", indexes={
  8.  *     @ORM\Index(name="menu_name", columns={"menu_name"}),
  9.  *     @ORM\Index(name="category_id", columns={"category_id"}),
  10.  *     @ORM\Index(name="active", columns={"active"}),
  11.  *     @ORM\Index(name="removed", columns={"removed"})
  12.  * })
  13.  * @ORM\Entity(repositoryClass="App\Repository\MenusRepository")
  14.  */
  15. class Menus
  16. {
  17.     /**
  18.      * @var int
  19.      *
  20.      * @ORM\Column(name="id", type="integer")
  21.      * @ORM\Id
  22.      * @ORM\GeneratedValue(strategy="AUTO")
  23.      */
  24.     private $id;
  25.     /**
  26.      * @var string
  27.      *
  28.      * @ORM\Column(name="menu_name", type="string", length=255)
  29.      */
  30.     private $menuName;
  31.     /**
  32.      * @var string
  33.      *
  34.      * @ORM\Column(name="menu_name_en", type="string", length=255, nullable=true)
  35.      */
  36.     private $menuNameEn;
  37.     /**
  38.      * @var int
  39.      *
  40.      * @ORM\Column(name="category_id", type="integer")
  41.      */
  42.     private $categoryId;
  43.     /**
  44.      * @var float
  45.      *
  46.      * @ORM\Column(name="calories", type="float", nullable=true, options={"unsigned"=true})
  47.      */
  48.     private $calories;
  49.     /**
  50.      * @var float
  51.      *
  52.      * @ORM\Column(name="proteins", type="float", nullable=true, options={"unsigned"=true})
  53.      */
  54.     private $proteins;
  55.     /**
  56.      * @var float
  57.      *
  58.      * @ORM\Column(name="fats", type="float", nullable=true, options={"unsigned"=true})
  59.      */
  60.     private $fats;
  61.     /**
  62.      * @var float
  63.      *
  64.      * @ORM\Column(name="sugar", type="float", nullable=true, options={"unsigned"=true})
  65.      */
  66.     private $sugar;
  67.     /**
  68.      * @var bool
  69.      *
  70.      * @ORM\Column(name="active", type="boolean")
  71.      */
  72.     private $active;
  73.     /**
  74.      * @var bool
  75.      *
  76.      * @ORM\Column(name="removed", type="boolean")
  77.      */
  78.     private $removed;
  79.     /**
  80.      * @ORM\Column(type="decimal", precision=10, scale=3)
  81.      */
  82.     private $energy;
  83.     /**
  84.      * @ORM\Column(type="decimal", precision=10, scale=3)
  85.      */
  86.     private $carbohydrate;
  87.     /**
  88.      * @ORM\Column(type="decimal", precision=10, scale=3)
  89.      */
  90.     private $fiber_total_dietary;
  91.     /**
  92.      * @ORM\Column(type="decimal", precision=10, scale=3)
  93.      */
  94.     private $total_fat;
  95.     /**
  96.      * @ORM\Column(type="decimal", precision=10, scale=3)
  97.      */
  98.     private $fatty_acids_total_saturated;
  99.     /**
  100.      * @ORM\Column(type="decimal", precision=10, scale=3)
  101.      */
  102.     private $fatty_acids_total_monosaturated;
  103.     /**
  104.      * @ORM\Column(type="decimal", precision=10, scale=3)
  105.      */
  106.     private $fatty_acids_total_polyunsaturated;
  107.     /**
  108.      * @ORM\Column(type="decimal", precision=10, scale=3)
  109.      */
  110.     private $cholesterol;
  111.     /**
  112.      * @ORM\Column(type="decimal", precision=10, scale=3)
  113.      */
  114.     private $retinol;
  115.     /**
  116.      * @ORM\Column(type="decimal", precision=10, scale=3)
  117.      */
  118.     private $vitamin_a;
  119.     /**
  120.      * @ORM\Column(type="decimal", precision=10, scale=3)
  121.      */
  122.     private $carotene_alpha;
  123.     /**
  124.      * @ORM\Column(type="decimal", precision=10, scale=3)
  125.      */
  126.     private $carotene_beta;
  127.     /**
  128.      * @ORM\Column(type="decimal", precision=10, scale=3)
  129.      */
  130.     private $cryptoxanthin_beta;
  131.     /**
  132.      * @ORM\Column(type="decimal", precision=10, scale=3)
  133.      */
  134.     private $lycopene;
  135.     /**
  136.      * @ORM\Column(type="decimal", precision=10, scale=3)
  137.      */
  138.     private $lutein_zeaxanthin;
  139.     /**
  140.      * @ORM\Column(type="decimal", precision=10, scale=3)
  141.      */
  142.     private $thiamin;
  143.     /**
  144.      * @ORM\Column(type="decimal", precision=10, scale=3)
  145.      */
  146.     private $riboflavin;
  147.     /**
  148.      * @ORM\Column(type="decimal", precision=10, scale=3)
  149.      */
  150.     private $niacin;
  151.     /**
  152.      * @ORM\Column(type="decimal", precision=10, scale=3)
  153.      */
  154.     private $vitamin_b6;
  155.     /**
  156.      * @ORM\Column(type="decimal", precision=10, scale=3)
  157.      */
  158.     private $folic_acid;
  159.     /**
  160.      * @ORM\Column(type="decimal", precision=10, scale=3)
  161.      */
  162.     private $folate_food;
  163.     /**
  164.      * @ORM\Column(type="decimal", precision=10, scale=3)
  165.      */
  166.     private $folate_dfe;
  167.     /**
  168.      * @ORM\Column(type="decimal", precision=10, scale=3)
  169.      */
  170.     private $folate_total;
  171.     /**
  172.      * @ORM\Column(type="decimal", precision=10, scale=3)
  173.      */
  174.     private $choline_total;
  175.     /**
  176.      * @ORM\Column(type="decimal", precision=10, scale=3)
  177.      */
  178.     private $vitamin_b12;
  179.     /**
  180.      * @ORM\Column(type="decimal", precision=10, scale=3)
  181.      */
  182.     private $vitamin_b12_added;
  183.     /**
  184.      * @ORM\Column(type="decimal", precision=10, scale=3)
  185.      */
  186.     private $vitamin_c;
  187.     /**
  188.      * @ORM\Column(type="decimal", precision=10, scale=3)
  189.      */
  190.     private $vitamin_d_d2_d3;
  191.     /**
  192.      * @ORM\Column(type="decimal", precision=10, scale=3)
  193.      */
  194.     private $vitamin_e_alpha_tocopherol;
  195.     /**
  196.      * @ORM\Column(type="decimal", precision=10, scale=3)
  197.      */
  198.     private $vitamin_e_added;
  199.     /**
  200.      * @ORM\Column(type="decimal", precision=10, scale=3)
  201.      */
  202.     private $vitamin_k_phylloquinone;
  203.     /**
  204.      * @ORM\Column(type="decimal", precision=10, scale=3)
  205.      */
  206.     private $calcium;
  207.     /**
  208.      * @ORM\Column(type="decimal", precision=10, scale=3)
  209.      */
  210.     private $phosphorus;
  211.     /**
  212.      * @ORM\Column(type="decimal", precision=10, scale=3)
  213.      */
  214.     private $magnesium;
  215.     /**
  216.      * @ORM\Column(type="decimal", precision=10, scale=3)
  217.      */
  218.     private $iron;
  219.     /**
  220.      * @ORM\Column(type="decimal", precision=10, scale=3)
  221.      */
  222.     private $zinc;
  223.     /**
  224.      * @ORM\Column(type="decimal", precision=10, scale=3)
  225.      */
  226.     private $copper;
  227.     /**
  228.      * @ORM\Column(type="decimal", precision=10, scale=3)
  229.      */
  230.     private $selenium;
  231.     /**
  232.      * @ORM\Column(type="decimal", precision=10, scale=3)
  233.      */
  234.     private $potassium;
  235.     /**
  236.      * @ORM\Column(type="decimal", precision=10, scale=3)
  237.      */
  238.     private $sodium;
  239.     /**
  240.      * @ORM\Column(type="decimal", precision=10, scale=3)
  241.      */
  242.     private $caffeine;
  243.     /**
  244.      * @ORM\Column(type="decimal", precision=10, scale=3)
  245.      */
  246.     private $theobromine;
  247.     /**
  248.      * @ORM\Column(type="decimal", precision=10, scale=3)
  249.      */
  250.     private $alcohol;
  251.     /**
  252.      * @ORM\Column(type="decimal", precision=10, scale=3)
  253.      */
  254.     private $water;
  255.     /**
  256.      * @ORM\Column(type="decimal", precision=10, scale=3)
  257.      */
  258.     private $protein;
  259.     /**
  260.      * @ORM\Column(type="decimal", precision=10, scale=3)
  261.      */
  262.     private $sugars_total;
  263.     /**
  264.      * @ORM\Column(type="decimal", precision=10, scale=3)
  265.      */
  266.     private $healthy_minutes;
  267.     /**
  268.      * Get id
  269.      *
  270.      * @return int
  271.      */
  272.     public function getId()
  273.     {
  274.         return $this->id;
  275.     }
  276.     /**
  277.      * Set menuName
  278.      *
  279.      * @param string $menuName
  280.      *
  281.      * @return Menus
  282.      */
  283.     public function setMenuName($menuName)
  284.     {
  285.         $this->menuName $menuName;
  286.         return $this;
  287.     }
  288.     /**
  289.      * Get menuName
  290.      *
  291.      * @return string
  292.      */
  293.     public function getMenuName()
  294.     {
  295.         return $this->menuName;
  296.     }
  297.     /**
  298.      * @return string
  299.      */
  300.     public function getMenuNameEn()
  301.     {
  302.         return $this->menuNameEn;
  303.     }
  304.     /**
  305.      * @param string $menuNameEn
  306.      */
  307.     public function setMenuNameEn($menuNameEn)
  308.     {
  309.         $this->menuNameEn $menuNameEn;
  310.     }
  311.     /**
  312.      * Set categoryId
  313.      *
  314.      * @param integer $categoryId
  315.      *
  316.      * @return Menus
  317.      */
  318.     public function setCategoryId($categoryId)
  319.     {
  320.         $this->categoryId $categoryId;
  321.         return $this;
  322.     }
  323.     /**
  324.      * Get categoryId
  325.      *
  326.      * @return int
  327.      */
  328.     public function getCategoryId()
  329.     {
  330.         return $this->categoryId;
  331.     }
  332.     /**
  333.      * @return float
  334.      */
  335.     public function getCalories()
  336.     {
  337.         return $this->calories;
  338.     }
  339.     /**
  340.      * @param float $calories
  341.      */
  342.     public function setCalories($calories)
  343.     {
  344.         $this->calories $calories;
  345.     }
  346.     /**
  347.      * @return float
  348.      */
  349.     public function getProteins()
  350.     {
  351.         return $this->proteins;
  352.     }
  353.     /**
  354.      * @param float $proteins
  355.      */
  356.     public function setProteins($proteins)
  357.     {
  358.         $this->proteins $proteins;
  359.     }
  360.     /**
  361.      * @return float
  362.      */
  363.     public function getFats()
  364.     {
  365.         return $this->fats;
  366.     }
  367.     /**
  368.      * @param float $fats
  369.      */
  370.     public function setFats($fats)
  371.     {
  372.         $this->fats $fats;
  373.     }
  374.     /**
  375.      * @return float
  376.      */
  377.     public function getSugar()
  378.     {
  379.         return $this->sugar;
  380.     }
  381.     /**
  382.      * @param float $sugar
  383.      */
  384.     public function setSugar($sugar)
  385.     {
  386.         $this->sugar $sugar;
  387.     }
  388.     /**
  389.      * Set active
  390.      *
  391.      * @param boolean $active
  392.      *
  393.      * @return Menus
  394.      */
  395.     public function setActive($active)
  396.     {
  397.         $this->active $active;
  398.         return $this;
  399.     }
  400.     /**
  401.      * Get active
  402.      *
  403.      * @return bool
  404.      */
  405.     public function getActive()
  406.     {
  407.         return $this->active;
  408.     }
  409.     /**
  410.      * Set removed
  411.      *
  412.      * @param boolean $removed
  413.      *
  414.      * @return Menus
  415.      */
  416.     public function setRemoved($removed)
  417.     {
  418.         $this->removed $removed;
  419.         return $this;
  420.     }
  421.     /**
  422.      * Get removed
  423.      *
  424.      * @return bool
  425.      */
  426.     public function getRemoved()
  427.     {
  428.         return $this->removed;
  429.     }
  430.     /**
  431.      * @return mixed
  432.      */
  433.     public function getEnergy()
  434.     {
  435.         return $this->energy;
  436.     }
  437.     /**
  438.      * @param mixed $energy
  439.      */
  440.     public function setEnergy($energy): void
  441.     {
  442.         $this->energy $energy;
  443.     }
  444.     /**
  445.      * @return mixed
  446.      */
  447.     public function getCarbohydrate()
  448.     {
  449.         return $this->carbohydrate;
  450.     }
  451.     /**
  452.      * @param mixed $carbohydrate
  453.      */
  454.     public function setCarbohydrate($carbohydrate): void
  455.     {
  456.         $this->carbohydrate $carbohydrate;
  457.     }
  458.     /**
  459.      * @return mixed
  460.      */
  461.     public function getFiberTotalDietary()
  462.     {
  463.         return $this->fiber_total_dietary;
  464.     }
  465.     /**
  466.      * @param mixed $fiber_total_dietary
  467.      */
  468.     public function setFiberTotalDietary($fiber_total_dietary): void
  469.     {
  470.         $this->fiber_total_dietary $fiber_total_dietary;
  471.     }
  472.     /**
  473.      * @return mixed
  474.      */
  475.     public function getTotalFat()
  476.     {
  477.         return $this->total_fat;
  478.     }
  479.     /**
  480.      * @param mixed $total_fat
  481.      */
  482.     public function setTotalFat($total_fat): void
  483.     {
  484.         $this->total_fat $total_fat;
  485.     }
  486.     /**
  487.      * @return mixed
  488.      */
  489.     public function getFattyAcidsTotalSaturated()
  490.     {
  491.         return $this->fatty_acids_total_saturated;
  492.     }
  493.     /**
  494.      * @param mixed $fatty_acids_total_saturated
  495.      */
  496.     public function setFattyAcidsTotalSaturated($fatty_acids_total_saturated): void
  497.     {
  498.         $this->fatty_acids_total_saturated $fatty_acids_total_saturated;
  499.     }
  500.     /**
  501.      * @return mixed
  502.      */
  503.     public function getFattyAcidsTotalMonosaturated()
  504.     {
  505.         return $this->fatty_acids_total_monosaturated;
  506.     }
  507.     /**
  508.      * @param mixed $fatty_acids_total_monosaturated
  509.      */
  510.     public function setFattyAcidsTotalMonosaturated($fatty_acids_total_monosaturated): void
  511.     {
  512.         $this->fatty_acids_total_monosaturated $fatty_acids_total_monosaturated;
  513.     }
  514.     /**
  515.      * @return mixed
  516.      */
  517.     public function getFattyAcidsTotalPolyunsaturated()
  518.     {
  519.         return $this->fatty_acids_total_polyunsaturated;
  520.     }
  521.     /**
  522.      * @param mixed $fatty_acids_total_polyunsaturated
  523.      */
  524.     public function setFattyAcidsTotalPolyunsaturated($fatty_acids_total_polyunsaturated): void
  525.     {
  526.         $this->fatty_acids_total_polyunsaturated $fatty_acids_total_polyunsaturated;
  527.     }
  528.     /**
  529.      * @return mixed
  530.      */
  531.     public function getCholesterol()
  532.     {
  533.         return $this->cholesterol;
  534.     }
  535.     /**
  536.      * @param mixed $cholesterol
  537.      */
  538.     public function setCholesterol($cholesterol): void
  539.     {
  540.         $this->cholesterol $cholesterol;
  541.     }
  542.     /**
  543.      * @return mixed
  544.      */
  545.     public function getRetinol()
  546.     {
  547.         return $this->retinol;
  548.     }
  549.     /**
  550.      * @param mixed $retinol
  551.      */
  552.     public function setRetinol($retinol): void
  553.     {
  554.         $this->retinol $retinol;
  555.     }
  556.     /**
  557.      * @return mixed
  558.      */
  559.     public function getVitaminA()
  560.     {
  561.         return $this->vitamin_a;
  562.     }
  563.     /**
  564.      * @param mixed $vitamin_a
  565.      */
  566.     public function setVitaminA($vitamin_a): void
  567.     {
  568.         $this->vitamin_a $vitamin_a;
  569.     }
  570.     /**
  571.      * @return mixed
  572.      */
  573.     public function getCaroteneAlpha()
  574.     {
  575.         return $this->carotene_alpha;
  576.     }
  577.     /**
  578.      * @param mixed $carotene_alpha
  579.      */
  580.     public function setCaroteneAlpha($carotene_alpha): void
  581.     {
  582.         $this->carotene_alpha $carotene_alpha;
  583.     }
  584.     /**
  585.      * @return mixed
  586.      */
  587.     public function getCaroteneBeta()
  588.     {
  589.         return $this->carotene_beta;
  590.     }
  591.     /**
  592.      * @param mixed $carotene_beta
  593.      */
  594.     public function setCaroteneBeta($carotene_beta): void
  595.     {
  596.         $this->carotene_beta $carotene_beta;
  597.     }
  598.     /**
  599.      * @return mixed
  600.      */
  601.     public function getCryptoxanthinBeta()
  602.     {
  603.         return $this->cryptoxanthin_beta;
  604.     }
  605.     /**
  606.      * @param mixed $cryptoxanthin_beta
  607.      */
  608.     public function setCryptoxanthinBeta($cryptoxanthin_beta): void
  609.     {
  610.         $this->cryptoxanthin_beta $cryptoxanthin_beta;
  611.     }
  612.     /**
  613.      * @return mixed
  614.      */
  615.     public function getLycopene()
  616.     {
  617.         return $this->lycopene;
  618.     }
  619.     /**
  620.      * @param mixed $lycopene
  621.      */
  622.     public function setLycopene($lycopene): void
  623.     {
  624.         $this->lycopene $lycopene;
  625.     }
  626.     /**
  627.      * @return mixed
  628.      */
  629.     public function getLuteinZeaxanthin()
  630.     {
  631.         return $this->lutein_zeaxanthin;
  632.     }
  633.     /**
  634.      * @param mixed $lutein_zeaxanthin
  635.      */
  636.     public function setLuteinZeaxanthin($lutein_zeaxanthin): void
  637.     {
  638.         $this->lutein_zeaxanthin $lutein_zeaxanthin;
  639.     }
  640.     /**
  641.      * @return mixed
  642.      */
  643.     public function getThiamin()
  644.     {
  645.         return $this->thiamin;
  646.     }
  647.     /**
  648.      * @param mixed $thiamin
  649.      */
  650.     public function setThiamin($thiamin): void
  651.     {
  652.         $this->thiamin $thiamin;
  653.     }
  654.     /**
  655.      * @return mixed
  656.      */
  657.     public function getRiboflavin()
  658.     {
  659.         return $this->riboflavin;
  660.     }
  661.     /**
  662.      * @param mixed $riboflavin
  663.      */
  664.     public function setRiboflavin($riboflavin): void
  665.     {
  666.         $this->riboflavin $riboflavin;
  667.     }
  668.     /**
  669.      * @return mixed
  670.      */
  671.     public function getNiacin()
  672.     {
  673.         return $this->niacin;
  674.     }
  675.     /**
  676.      * @param mixed $niacin
  677.      */
  678.     public function setNiacin($niacin): void
  679.     {
  680.         $this->niacin $niacin;
  681.     }
  682.     /**
  683.      * @return mixed
  684.      */
  685.     public function getVitaminB6()
  686.     {
  687.         return $this->vitamin_b6;
  688.     }
  689.     /**
  690.      * @param mixed $vitamin_b6
  691.      */
  692.     public function setVitaminB6($vitamin_b6): void
  693.     {
  694.         $this->vitamin_b6 $vitamin_b6;
  695.     }
  696.     /**
  697.      * @return mixed
  698.      */
  699.     public function getFolicAcid()
  700.     {
  701.         return $this->folic_acid;
  702.     }
  703.     /**
  704.      * @param mixed $folic_acid
  705.      */
  706.     public function setFolicAcid($folic_acid): void
  707.     {
  708.         $this->folic_acid $folic_acid;
  709.     }
  710.     /**
  711.      * @return mixed
  712.      */
  713.     public function getFolateFood()
  714.     {
  715.         return $this->folate_food;
  716.     }
  717.     /**
  718.      * @param mixed $folate_food
  719.      */
  720.     public function setFolateFood($folate_food): void
  721.     {
  722.         $this->folate_food $folate_food;
  723.     }
  724.     /**
  725.      * @return mixed
  726.      */
  727.     public function getFolateDfe()
  728.     {
  729.         return $this->folate_dfe;
  730.     }
  731.     /**
  732.      * @param mixed $folate_dfe
  733.      */
  734.     public function setFolateDfe($folate_dfe): void
  735.     {
  736.         $this->folate_dfe $folate_dfe;
  737.     }
  738.     /**
  739.      * @return mixed
  740.      */
  741.     public function getFolateTotal()
  742.     {
  743.         return $this->folate_total;
  744.     }
  745.     /**
  746.      * @param mixed $folate_total
  747.      */
  748.     public function setFolateTotal($folate_total): void
  749.     {
  750.         $this->folate_total $folate_total;
  751.     }
  752.     /**
  753.      * @return mixed
  754.      */
  755.     public function getCholineTotal()
  756.     {
  757.         return $this->choline_total;
  758.     }
  759.     /**
  760.      * @param mixed $choline_total
  761.      */
  762.     public function setCholineTotal($choline_total): void
  763.     {
  764.         $this->choline_total $choline_total;
  765.     }
  766.     /**
  767.      * @return mixed
  768.      */
  769.     public function getVitaminB12()
  770.     {
  771.         return $this->vitamin_b12;
  772.     }
  773.     /**
  774.      * @param mixed $vitamin_b12
  775.      */
  776.     public function setVitaminB12($vitamin_b12): void
  777.     {
  778.         $this->vitamin_b12 $vitamin_b12;
  779.     }
  780.     /**
  781.      * @return mixed
  782.      */
  783.     public function getVitaminB12Added()
  784.     {
  785.         return $this->vitamin_b12_added;
  786.     }
  787.     /**
  788.      * @param mixed $vitamin_b12_added
  789.      */
  790.     public function setVitaminB12Added($vitamin_b12_added): void
  791.     {
  792.         $this->vitamin_b12_added $vitamin_b12_added;
  793.     }
  794.     /**
  795.      * @return mixed
  796.      */
  797.     public function getVitaminC()
  798.     {
  799.         return $this->vitamin_c;
  800.     }
  801.     /**
  802.      * @param mixed $vitamin_c
  803.      */
  804.     public function setVitaminC($vitamin_c): void
  805.     {
  806.         $this->vitamin_c $vitamin_c;
  807.     }
  808.     /**
  809.      * @return mixed
  810.      */
  811.     public function getVitaminDD2D3()
  812.     {
  813.         return $this->vitamin_d_d2_d3;
  814.     }
  815.     /**
  816.      * @param mixed $vitamin_d_d2_d3
  817.      */
  818.     public function setVitaminDD2D3($vitamin_d_d2_d3): void
  819.     {
  820.         $this->vitamin_d_d2_d3 $vitamin_d_d2_d3;
  821.     }
  822.     /**
  823.      * @return mixed
  824.      */
  825.     public function getVitaminEAlphaTocopherol()
  826.     {
  827.         return $this->vitamin_e_alpha_tocopherol;
  828.     }
  829.     /**
  830.      * @param mixed $vitamin_e_alpha_tocopherol
  831.      */
  832.     public function setVitaminEAlphaTocopherol($vitamin_e_alpha_tocopherol): void
  833.     {
  834.         $this->vitamin_e_alpha_tocopherol $vitamin_e_alpha_tocopherol;
  835.     }
  836.     /**
  837.      * @return mixed
  838.      */
  839.     public function getVitaminEAdded()
  840.     {
  841.         return $this->vitamin_e_added;
  842.     }
  843.     /**
  844.      * @param mixed $vitamin_e_added
  845.      */
  846.     public function setVitaminEAdded($vitamin_e_added): void
  847.     {
  848.         $this->vitamin_e_added $vitamin_e_added;
  849.     }
  850.     /**
  851.      * @return mixed
  852.      */
  853.     public function getVitaminKPhylloquinone()
  854.     {
  855.         return $this->vitamin_k_phylloquinone;
  856.     }
  857.     /**
  858.      * @param mixed $vitamin_k_phylloquinone
  859.      */
  860.     public function setVitaminKPhylloquinone($vitamin_k_phylloquinone): void
  861.     {
  862.         $this->vitamin_k_phylloquinone $vitamin_k_phylloquinone;
  863.     }
  864.     /**
  865.      * @return mixed
  866.      */
  867.     public function getCalcium()
  868.     {
  869.         return $this->calcium;
  870.     }
  871.     /**
  872.      * @param mixed $calcium
  873.      */
  874.     public function setCalcium($calcium): void
  875.     {
  876.         $this->calcium $calcium;
  877.     }
  878.     /**
  879.      * @return mixed
  880.      */
  881.     public function getPhosphorus()
  882.     {
  883.         return $this->phosphorus;
  884.     }
  885.     /**
  886.      * @param mixed $phosphorus
  887.      */
  888.     public function setPhosphorus($phosphorus): void
  889.     {
  890.         $this->phosphorus $phosphorus;
  891.     }
  892.     /**
  893.      * @return mixed
  894.      */
  895.     public function getMagnesium()
  896.     {
  897.         return $this->magnesium;
  898.     }
  899.     /**
  900.      * @param mixed $magnesium
  901.      */
  902.     public function setMagnesium($magnesium): void
  903.     {
  904.         $this->magnesium $magnesium;
  905.     }
  906.     /**
  907.      * @return mixed
  908.      */
  909.     public function getIron()
  910.     {
  911.         return $this->iron;
  912.     }
  913.     /**
  914.      * @param mixed $iron
  915.      */
  916.     public function setIron($iron): void
  917.     {
  918.         $this->iron $iron;
  919.     }
  920.     /**
  921.      * @return mixed
  922.      */
  923.     public function getZinc()
  924.     {
  925.         return $this->zinc;
  926.     }
  927.     /**
  928.      * @param mixed $zinc
  929.      */
  930.     public function setZinc($zinc): void
  931.     {
  932.         $this->zinc $zinc;
  933.     }
  934.     /**
  935.      * @return mixed
  936.      */
  937.     public function getCopper()
  938.     {
  939.         return $this->copper;
  940.     }
  941.     /**
  942.      * @param mixed $copper
  943.      */
  944.     public function setCopper($copper): void
  945.     {
  946.         $this->copper $copper;
  947.     }
  948.     /**
  949.      * @return mixed
  950.      */
  951.     public function getSelenium()
  952.     {
  953.         return $this->selenium;
  954.     }
  955.     /**
  956.      * @param mixed $selenium
  957.      */
  958.     public function setSelenium($selenium): void
  959.     {
  960.         $this->selenium $selenium;
  961.     }
  962.     /**
  963.      * @return mixed
  964.      */
  965.     public function getPotassium()
  966.     {
  967.         return $this->potassium;
  968.     }
  969.     /**
  970.      * @param mixed $potassium
  971.      */
  972.     public function setPotassium($potassium): void
  973.     {
  974.         $this->potassium $potassium;
  975.     }
  976.     /**
  977.      * @return mixed
  978.      */
  979.     public function getSodium()
  980.     {
  981.         return $this->sodium;
  982.     }
  983.     /**
  984.      * @param mixed $sodium
  985.      */
  986.     public function setSodium($sodium): void
  987.     {
  988.         $this->sodium $sodium;
  989.     }
  990.     /**
  991.      * @return mixed
  992.      */
  993.     public function getCaffeine()
  994.     {
  995.         return $this->caffeine;
  996.     }
  997.     /**
  998.      * @param mixed $caffeine
  999.      */
  1000.     public function setCaffeine($caffeine): void
  1001.     {
  1002.         $this->caffeine $caffeine;
  1003.     }
  1004.     /**
  1005.      * @return mixed
  1006.      */
  1007.     public function getTheobromine()
  1008.     {
  1009.         return $this->theobromine;
  1010.     }
  1011.     /**
  1012.      * @param mixed $theobromine
  1013.      */
  1014.     public function setTheobromine($theobromine): void
  1015.     {
  1016.         $this->theobromine $theobromine;
  1017.     }
  1018.     /**
  1019.      * @return mixed
  1020.      */
  1021.     public function getAlcohol()
  1022.     {
  1023.         return $this->alcohol;
  1024.     }
  1025.     /**
  1026.      * @param mixed $alcohol
  1027.      */
  1028.     public function setAlcohol($alcohol): void
  1029.     {
  1030.         $this->alcohol $alcohol;
  1031.     }
  1032.     /**
  1033.      * @return mixed
  1034.      */
  1035.     public function getWater()
  1036.     {
  1037.         return $this->water;
  1038.     }
  1039.     /**
  1040.      * @param mixed $water
  1041.      */
  1042.     public function setWater($water): void
  1043.     {
  1044.         $this->water $water;
  1045.     }
  1046.     /**
  1047.      * @return mixed
  1048.      */
  1049.     public function getProtein()
  1050.     {
  1051.         return $this->protein;
  1052.     }
  1053.     /**
  1054.      * @param mixed $protein
  1055.      */
  1056.     public function setProtein($protein): void
  1057.     {
  1058.         $this->protein $protein;
  1059.     }
  1060.     /**
  1061.      * @return mixed
  1062.      */
  1063.     public function getSugarsTotal()
  1064.     {
  1065.         return $this->sugars_total;
  1066.     }
  1067.     /**
  1068.      * @param mixed $sugars_total
  1069.      */
  1070.     public function setSugarsTotal($sugars_total): void
  1071.     {
  1072.         $this->sugars_total $sugars_total;
  1073.     }
  1074.     /**
  1075.      * @return mixed
  1076.      */
  1077.     public function getHealthyMinutes()
  1078.     {
  1079.         return $this->healthy_minutes;
  1080.     }
  1081.     /**
  1082.      * @param mixed $healthy_minutes
  1083.      *
  1084.      * @return Recipes
  1085.      */
  1086.     public function setHealthyMinutes($healthy_minutes)
  1087.     {
  1088.         $this->healthy_minutes $healthy_minutes;
  1089.         return $this;
  1090.     }
  1091. }