src/Entity/Forms.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * Forms
  8.  *
  9.  * @ORM\Table(name="forms")
  10.  * @ORM\Entity
  11.  */
  12. class Forms
  13. {
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="ID", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var \DateTime|null
  24.      *
  25.      * @ORM\Column(name="Date", type="datetime", nullable=true)
  26.      */
  27.     private $date;
  28.     /**
  29.      * @var string|null
  30.      *
  31.      * @ORM\Column(name="uuid", type="string", length=191, nullable=true)
  32.      */
  33.     private $uuid;
  34.     /**
  35.      * @var int|null
  36.      *
  37.      * @ORM\Column(name="version", type="integer", nullable=true)
  38.      */
  39.     private $version;
  40.     /**
  41.      * @var int|null
  42.      *
  43.      * @ORM\Column(name="user_id", type="integer", nullable=true)
  44.      */
  45.     private $userId;
  46.     /**
  47.      * @var string|null
  48.      *
  49.      * @ORM\Column(name="brand", type="string", length=22, nullable=true)
  50.      */
  51.     private $brand;
  52.     /**
  53.      * @var string|null
  54.      *
  55.      * @ORM\Column(name="propname", type="string", length=191, nullable=true)
  56.      */
  57.     private $propname;
  58.     /**
  59.      * @var string|null
  60.      *
  61.      * @ORM\Column(name="extbuildappear", type="string", length=22, nullable=true)
  62.      */
  63.     private $extbuildappear;
  64.     /**
  65.      * @var string|null
  66.      *
  67.      * @ORM\Column(name="extparkfacility", type="string", length=22, nullable=true)
  68.      */
  69.     private $extparkfacility;
  70.     /**
  71.      * @var string|null
  72.      *
  73.      * @ORM\Column(name="extsiding", type="string", length=22, nullable=true)
  74.      */
  75.     private $extsiding;
  76.     /**
  77.      * @var string|null
  78.      *
  79.      * @ORM\Column(name="extwall", type="string", length=22, nullable=true)
  80.      */
  81.     private $extwall;
  82.     /**
  83.      * @var string|null
  84.      *
  85.      * @ORM\Column(name="extbarbecus", type="string", length=22, nullable=true)
  86.      */
  87.     private $extbarbecus;
  88.     /**
  89.      * @var string|null
  90.      *
  91.      * @ORM\Column(name="extgarfurniture", type="string", length=22, nullable=true)
  92.      */
  93.     private $extgarfurniture;
  94.     /**
  95.      * @var string|null
  96.      *
  97.      * @ORM\Column(name="extgates", type="string", length=22, nullable=true)
  98.      */
  99.     private $extgates;
  100.     /**
  101.      * @var string|null
  102.      *
  103.      * @ORM\Column(name="extdogs", type="string", length=22, nullable=true)
  104.      */
  105.     private $extdogs;
  106.     /**
  107.      * @var string|null
  108.      *
  109.      * @ORM\Column(name="extnotes", type="text", length=65535, nullable=true)
  110.      */
  111.     private $extnotes;
  112.     /**
  113.      * @var string|null
  114.      *
  115.      * @ORM\Column(name="extpic1", type="string", length=191, nullable=true)
  116.      */
  117.     private $extpic1;
  118.     /**
  119.      * @var string|null
  120.      *
  121.      * @ORM\Column(name="extpic2", type="string", length=191, nullable=true)
  122.      */
  123.     private $extpic2;
  124.     /**
  125.      * @var string|null
  126.      *
  127.      * @ORM\Column(name="extpic3", type="string", length=191, nullable=true)
  128.      */
  129.     private $extpic3;
  130.     /**
  131.      * @var string|null
  132.      *
  133.      * @ORM\Column(name="extpic4", type="string", length=191, nullable=true)
  134.      */
  135.     private $extpic4;
  136.     /**
  137.      * @var string|null
  138.      *
  139.      * @ORM\Column(name="beddecor", type="string", length=22, nullable=true)
  140.      */
  141.     private $beddecor;
  142.     /**
  143.      * @var string|null
  144.      *
  145.      * @ORM\Column(name="bedfurniture", type="string", length=22, nullable=true)
  146.      */
  147.     private $bedfurniture;
  148.     /**
  149.      * @var string|null
  150.      *
  151.      * @ORM\Column(name="bedflooring", type="string", length=22, nullable=true)
  152.      */
  153.     private $bedflooring;
  154.     /**
  155.      * @var string|null
  156.      *
  157.      * @ORM\Column(name="bedlight", type="string", length=22, nullable=true)
  158.      */
  159.     private $bedlight;
  160.     /**
  161.      * @var string|null
  162.      *
  163.      * @ORM\Column(name="bedbeds", type="string", length=22, nullable=true)
  164.      */
  165.     private $bedbeds;
  166.     /**
  167.      * @var string|null
  168.      *
  169.      * @ORM\Column(name="bedbedding", type="string", length=22, nullable=true)
  170.      */
  171.     private $bedbedding;
  172.     /**
  173.      * @var string|null
  174.      *
  175.      * @ORM\Column(name="bediflooring", type="string", length=22, nullable=true)
  176.      */
  177.     private $bediflooring;
  178.     /**
  179.      * @var string|null
  180.      *
  181.      * @ORM\Column(name="bedcurtain", type="string", length=22, nullable=true)
  182.      */
  183.     private $bedcurtain;
  184.     /**
  185.      * @var string|null
  186.      *
  187.      * @ORM\Column(name="bedheadboard", type="string", length=22, nullable=true)
  188.      */
  189.     private $bedheadboard;
  190.     /**
  191.      * @var string|null
  192.      *
  193.      * @ORM\Column(name="bedmatress", type="string", length=22, nullable=true)
  194.      */
  195.     private $bedmatress;
  196.     /**
  197.      * @var string|null
  198.      *
  199.      * @ORM\Column(name="bedmatressp", type="string", length=22, nullable=true)
  200.      */
  201.     private $bedmatressp;
  202.     /**
  203.      * @var string|null
  204.      *
  205.      * @ORM\Column(name="bedDuvet", type="string", length=22, nullable=true)
  206.      */
  207.     private $bedduvet;
  208.     /**
  209.      * @var string|null
  210.      *
  211.      * @ORM\Column(name="bedValances", type="string", length=22, nullable=true)
  212.      */
  213.     private $bedvalances;
  214.     /**
  215.      * @var string|null
  216.      *
  217.      * @ORM\Column(name="bedpillow", type="string", length=22, nullable=true)
  218.      */
  219.     private $bedpillow;
  220.     /**
  221.      * @var string|null
  222.      *
  223.      * @ORM\Column(name="bedpillowSlips", type="string", length=22, nullable=true)
  224.      */
  225.     private $bedpillowslips;
  226.     /**
  227.      * @var string|null
  228.      *
  229.      * @ORM\Column(name="bedBSTable", type="string", length=22, nullable=true)
  230.      */
  231.     private $bedbstable;
  232.     /**
  233.      * @var string|null
  234.      *
  235.      * @ORM\Column(name="bedhanger", type="string", length=22, nullable=true)
  236.      */
  237.     private $bedhanger;
  238.     /**
  239.      * @var string|null
  240.      *
  241.      * @ORM\Column(name="bedmirror", type="string", length=22, nullable=true)
  242.      */
  243.     private $bedmirror;
  244.     /**
  245.      * @var string|null
  246.      *
  247.      * @ORM\Column(name="bedwardrobe", type="string", length=22, nullable=true)
  248.      */
  249.     private $bedwardrobe;
  250.     /**
  251.      * @var string|null
  252.      *
  253.      * @ORM\Column(name="bedbin", type="string", length=22, nullable=true)
  254.      */
  255.     private $bedbin;
  256.     /**
  257.      * @var string|null
  258.      *
  259.      * @ORM\Column(name="bednotes", type="text", length=65535, nullable=true)
  260.      */
  261.     private $bednotes;
  262.     /**
  263.      * @var string|null
  264.      *
  265.      * @ORM\Column(name="bedpic1", type="string", length=191, nullable=true)
  266.      */
  267.     private $bedpic1;
  268.     /**
  269.      * @var string|null
  270.      *
  271.      * @ORM\Column(name="bedpic2", type="string", length=191, nullable=true)
  272.      */
  273.     private $bedpic2;
  274.     /**
  275.      * @var string|null
  276.      *
  277.      * @ORM\Column(name="bedpic3", type="string", length=191, nullable=true)
  278.      */
  279.     private $bedpic3;
  280.     /**
  281.      * @var string|null
  282.      *
  283.      * @ORM\Column(name="bedpic4", type="string", length=191, nullable=true)
  284.      */
  285.     private $bedpic4;
  286.     /**
  287.      * @var string|null
  288.      *
  289.      * @ORM\Column(name="bathdecor", type="string", length=191, nullable=true)
  290.      */
  291.     private $bathdecor;
  292.     /**
  293.      * @var string|null
  294.      *
  295.      * @ORM\Column(name="bathfurniture", type="string", length=191, nullable=true)
  296.      */
  297.     private $bathfurniture;
  298.     /**
  299.      * @var string|null
  300.      *
  301.      * @ORM\Column(name="bathflooring", type="string", length=191, nullable=true)
  302.      */
  303.     private $bathflooring;
  304.     /**
  305.      * @var string|null
  306.      *
  307.      * @ORM\Column(name="bathlighting", type="string", length=191, nullable=true)
  308.      */
  309.     private $bathlighting;
  310.     /**
  311.      * @var string|null
  312.      *
  313.      * @ORM\Column(name="bathbrush", type="string", length=191, nullable=true)
  314.      */
  315.     private $bathbrush;
  316.     /**
  317.      * @var string|null
  318.      *
  319.      * @ORM\Column(name="bathmirror", type="string", length=191, nullable=true)
  320.      */
  321.     private $bathmirror;
  322.     /**
  323.      * @var string|null
  324.      *
  325.      * @ORM\Column(name="bathshave", type="string", length=22, nullable=true)
  326.      */
  327.     private $bathshave;
  328.     /**
  329.      * @var string|null
  330.      *
  331.      * @ORM\Column(name="bathmat", type="string", length=22, nullable=true)
  332.      */
  333.     private $bathmat;
  334.     /**
  335.      * @var string|null
  336.      *
  337.      * @ORM\Column(name="bathbin", type="string", length=22, nullable=true)
  338.      */
  339.     private $bathbin;
  340.     /**
  341.      * @var string|null
  342.      *
  343.      * @ORM\Column(name="bathtowelrack", type="string", length=22, nullable=true)
  344.      */
  345.     private $bathtowelrack;
  346.     /**
  347.      * @var string|null
  348.      *
  349.      * @ORM\Column(name="bathnotes", type="text", length=65535, nullable=true)
  350.      */
  351.     private $bathnotes;
  352.     /**
  353.      * @var string|null
  354.      *
  355.      * @ORM\Column(name="bathpic1", type="string", length=191, nullable=true)
  356.      */
  357.     private $bathpic1;
  358.     /**
  359.      * @var string|null
  360.      *
  361.      * @ORM\Column(name="bathpic2", type="string", length=191, nullable=true)
  362.      */
  363.     private $bathpic2;
  364.     /**
  365.      * @var string|null
  366.      *
  367.      * @ORM\Column(name="bathpic3", type="string", length=191, nullable=true)
  368.      */
  369.     private $bathpic3;
  370.     /**
  371.      * @var string|null
  372.      *
  373.      * @ORM\Column(name="bathpic4", type="string", length=191, nullable=true)
  374.      */
  375.     private $bathpic4;
  376.     /**
  377.      * @var string|null
  378.      *
  379.      * @ORM\Column(name="kitdecor", type="string", length=22, nullable=true)
  380.      */
  381.     private $kitdecor;
  382.     /**
  383.      * @var string|null
  384.      *
  385.      * @ORM\Column(name="kitfurniture", type="string", length=22, nullable=true)
  386.      */
  387.     private $kitfurniture;
  388.     /**
  389.      * @var string|null
  390.      *
  391.      * @ORM\Column(name="kitflooring", type="string", length=22, nullable=true)
  392.      */
  393.     private $kitflooring;
  394.     /**
  395.      * @var string|null
  396.      *
  397.      * @ORM\Column(name="kitlighting", type="string", length=22, nullable=true)
  398.      */
  399.     private $kitlighting;
  400.     /**
  401.      * @var string|null
  402.      *
  403.      * @ORM\Column(name="kitgas", type="string", length=22, nullable=true)
  404.      */
  405.     private $kitgas;
  406.     /**
  407.      * @var string|null
  408.      *
  409.      * @ORM\Column(name="kitequipment", type="string", length=22, nullable=true)
  410.      */
  411.     private $kitequipment;
  412.     /**
  413.      * @var string|null
  414.      *
  415.      * @ORM\Column(name="kitutensils", type="string", length=22, nullable=true)
  416.      */
  417.     private $kitutensils;
  418.     /**
  419.      * @var string|null
  420.      *
  421.      * @ORM\Column(name="kiticooker", type="string", length=22, nullable=true)
  422.      */
  423.     private $kiticooker;
  424.     /**
  425.      * @var string|null
  426.      *
  427.      * @ORM\Column(name="kitifreezer", type="string", length=22, nullable=true)
  428.      */
  429.     private $kitifreezer;
  430.     /**
  431.      * @var string|null
  432.      *
  433.      * @ORM\Column(name="kitwashmachine", type="string", length=22, nullable=true)
  434.      */
  435.     private $kitwashmachine;
  436.     /**
  437.      * @var string|null
  438.      *
  439.      * @ORM\Column(name="kitdryer", type="string", length=22, nullable=true)
  440.      */
  441.     private $kitdryer;
  442.     /**
  443.      * @var string|null
  444.      *
  445.      * @ORM\Column(name="kitiron", type="string", length=22, nullable=true)
  446.      */
  447.     private $kitiron;
  448.     /**
  449.      * @var string|null
  450.      *
  451.      * @ORM\Column(name="kitwasher", type="string", length=22, nullable=true)
  452.      */
  453.     private $kitwasher;
  454.     /**
  455.      * @var string|null
  456.      *
  457.      * @ORM\Column(name="kitmicrowave", type="string", length=22, nullable=true)
  458.      */
  459.     private $kitmicrowave;
  460.     /**
  461.      * @var string|null
  462.      *
  463.      * @ORM\Column(name="kitkettle", type="string", length=22, nullable=true)
  464.      */
  465.     private $kitkettle;
  466.     /**
  467.      * @var string|null
  468.      *
  469.      * @ORM\Column(name="kittoaster", type="string", length=22, nullable=true)
  470.      */
  471.     private $kittoaster;
  472.     /**
  473.      * @var string|null
  474.      *
  475.      * @ORM\Column(name="kitsaucepan", type="string", length=22, nullable=true)
  476.      */
  477.     private $kitsaucepan;
  478.     /**
  479.      * @var string|null
  480.      *
  481.      * @ORM\Column(name="kitfrypan", type="string", length=22, nullable=true)
  482.      */
  483.     private $kitfrypan;
  484.     /**
  485.      * @var string|null
  486.      *
  487.      * @ORM\Column(name="kitiutensils", type="string", length=22, nullable=true)
  488.      */
  489.     private $kitiutensils;
  490.     /**
  491.      * @var string|null
  492.      *
  493.      * @ORM\Column(name="ktcookware", type="string", length=22, nullable=true)
  494.      */
  495.     private $ktcookware;
  496.     /**
  497.      * @var string|null
  498.      *
  499.      * @ORM\Column(name="kitcutlery", type="string", length=22, nullable=true)
  500.      */
  501.     private $kitcutlery;
  502.     /**
  503.      * @var string|null
  504.      *
  505.      * @ORM\Column(name="kitcrockery", type="string", length=22, nullable=true)
  506.      */
  507.     private $kitcrockery;
  508.     /**
  509.      * @var string|null
  510.      *
  511.      * @ORM\Column(name="kitGlasses", type="string", length=22, nullable=true)
  512.      */
  513.     private $kitglasses;
  514.     /**
  515.      * @var string|null
  516.      *
  517.      * @ORM\Column(name="kitSaltAndPepper", type="string", length=22, nullable=true)
  518.      */
  519.     private $kitsaltandpepper;
  520.     /**
  521.      * @var string|null
  522.      *
  523.      * @ORM\Column(name="kitWUP", type="string", length=22, nullable=true)
  524.      */
  525.     private $kitwup;
  526.     /**
  527.      * @var string|null
  528.      *
  529.      * @ORM\Column(name="kitClean", type="string", length=22, nullable=true)
  530.      */
  531.     private $kitclean;
  532.     /**
  533.      * @var string|null
  534.      *
  535.      * @ORM\Column(name="kitnotes", type="text", length=65535, nullable=true)
  536.      */
  537.     private $kitnotes;
  538.     /**
  539.      * @var string|null
  540.      *
  541.      * @ORM\Column(name="kitpic1", type="string", length=191, nullable=true)
  542.      */
  543.     private $kitpic1;
  544.     /**
  545.      * @var string|null
  546.      *
  547.      * @ORM\Column(name="kitpci2", type="string", length=191, nullable=true)
  548.      */
  549.     private $kitpci2;
  550.     /**
  551.      * @var string|null
  552.      *
  553.      * @ORM\Column(name="kitpic3", type="string", length=191, nullable=true)
  554.      */
  555.     private $kitpic3;
  556.     /**
  557.      * @var string|null
  558.      *
  559.      * @ORM\Column(name="kitpic4", type="string", length=191, nullable=true)
  560.      */
  561.     private $kitpic4;
  562.     /**
  563.      * @var string|null
  564.      *
  565.      * @ORM\Column(name="pdecor", type="string", length=22, nullable=true)
  566.      */
  567.     private $pdecor;
  568.     /**
  569.      * @var string|null
  570.      *
  571.      * @ORM\Column(name="pfurniture", type="string", length=22, nullable=true)
  572.      */
  573.     private $pfurniture;
  574.     /**
  575.      * @var string|null
  576.      *
  577.      * @ORM\Column(name="pflooring", type="string", length=22, nullable=true)
  578.      */
  579.     private $pflooring;
  580.     /**
  581.      * @var string|null
  582.      *
  583.      * @ORM\Column(name="plighting", type="string", length=22, nullable=true)
  584.      */
  585.     private $plighting;
  586.     /**
  587.      * @var string|null
  588.      *
  589.      * @ORM\Column(name="piflooring", type="string", length=22, nullable=true)
  590.      */
  591.     private $piflooring;
  592.     /**
  593.      * @var string|null
  594.      *
  595.      * @ORM\Column(name="pseating", type="string", length=22, nullable=true)
  596.      */
  597.     private $pseating;
  598.     /**
  599.      * @var string|null
  600.      *
  601.      * @ORM\Column(name="pcurtain", type="string", length=22, nullable=true)
  602.      */
  603.     private $pcurtain;
  604.     /**
  605.      * @var string|null
  606.      *
  607.      * @ORM\Column(name="pcoffeetable", type="string", length=22, nullable=true)
  608.      */
  609.     private $pcoffeetable;
  610.     /**
  611.      * @var string|null
  612.      *
  613.      * @ORM\Column(name="plamp", type="string", length=22, nullable=true)
  614.      */
  615.     private $plamp;
  616.     /**
  617.      * @var string|null
  618.      *
  619.      * @ORM\Column(name="pdintable", type="string", length=22, nullable=true)
  620.      */
  621.     private $pdintable;
  622.     /**
  623.      * @var string|null
  624.      *
  625.      * @ORM\Column(name="ptablemat", type="string", length=22, nullable=true)
  626.      */
  627.     private $ptablemat;
  628.     /**
  629.      * @var string|null
  630.      *
  631.      * @ORM\Column(name="pbin", type="string", length=22, nullable=true)
  632.      */
  633.     private $pbin;
  634.     /**
  635.      * @var string|null
  636.      *
  637.      * @ORM\Column(name="pvaccum", type="string", length=22, nullable=true)
  638.      */
  639.     private $pvaccum;
  640.     /**
  641.      * @var string|null
  642.      *
  643.      * @ORM\Column(name="pnotes", type="text", length=65535, nullable=true)
  644.      */
  645.     private $pnotes;
  646.     /**
  647.      * @var string|null
  648.      *
  649.      * @ORM\Column(name="ppic1", type="string", length=191, nullable=true)
  650.      */
  651.     private $ppic1;
  652.     /**
  653.      * @var string|null
  654.      *
  655.      * @ORM\Column(name="ppic2", type="string", length=191, nullable=true)
  656.      */
  657.     private $ppic2;
  658.     /**
  659.      * @var string|null
  660.      *
  661.      * @ORM\Column(name="ppic3", type="string", length=191, nullable=true)
  662.      */
  663.     private $ppic3;
  664.     /**
  665.      * @var string|null
  666.      *
  667.      * @ORM\Column(name="ppic4", type="string", length=191, nullable=true)
  668.      */
  669.     private $ppic4;
  670.     /**
  671.      * @var string|null
  672.      *
  673.      * @ORM\Column(name="cliving", type="string", length=22, nullable=true)
  674.      */
  675.     private $cliving;
  676.     /**
  677.      * @var string|null
  678.      *
  679.      * @ORM\Column(name="cbed", type="string", length=22, nullable=true)
  680.      */
  681.     private $cbed;
  682.     /**
  683.      * @var string|null
  684.      *
  685.      * @ORM\Column(name="cbath", type="string", length=22, nullable=true)
  686.      */
  687.     private $cbath;
  688.     /**
  689.      * @var string|null
  690.      *
  691.      * @ORM\Column(name="ckit", type="string", length=22, nullable=true)
  692.      */
  693.     private $ckit;
  694.     /**
  695.      * @var string|null
  696.      *
  697.      * @ORM\Column(name="cnotes", type="text", length=65535, nullable=true)
  698.      */
  699.     private $cnotes;
  700.     /**
  701.      * @var string|null
  702.      *
  703.      * @ORM\Column(name="cpic1", type="string", length=191, nullable=true)
  704.      */
  705.     private $cpic1;
  706.     /**
  707.      * @var string|null
  708.      *
  709.      * @ORM\Column(name="cpic2", type="string", length=191, nullable=true)
  710.      */
  711.     private $cpic2;
  712.     /**
  713.      * @var string|null
  714.      *
  715.      * @ORM\Column(name="cpic3", type="string", length=191, nullable=true)
  716.      */
  717.     private $cpic3;
  718.     /**
  719.      * @var string|null
  720.      *
  721.      * @ORM\Column(name="cpic4", type="string", length=191, nullable=true)
  722.      */
  723.     private $cpic4;
  724.     /**
  725.      * @var string|null
  726.      *
  727.      * @ORM\Column(name="minfo", type="string", length=22, nullable=true)
  728.      */
  729.     private $minfo;
  730.     /**
  731.      * @var string|null
  732.      *
  733.      * @ORM\Column(name="mwelcome", type="string", length=22, nullable=true)
  734.      */
  735.     private $mwelcome;
  736.     /**
  737.      * @var string|null
  738.      *
  739.      * @ORM\Column(name="marrival", type="string", length=22, nullable=true)
  740.      */
  741.     private $marrival;
  742.     /**
  743.      * @var string|null
  744.      *
  745.      * @ORM\Column(name="mwifi", type="string", length=22, nullable=true)
  746.      */
  747.     private $mwifi;
  748.     /**
  749.      * @var string|null
  750.      *
  751.      * @ORM\Column(name="maccessories", type="string", length=22, nullable=true)
  752.      */
  753.     private $maccessories;
  754.     /**
  755.      * @var string|null
  756.      *
  757.      * @ORM\Column(name="mspace", type="string", length=22, nullable=true)
  758.      */
  759.     private $mspace;
  760.     /**
  761.      * @var string|null
  762.      *
  763.      * @ORM\Column(name="mfirerisk", type="string", length=22, nullable=true)
  764.      */
  765.     private $mfirerisk;
  766.     /**
  767.      * @var string|null
  768.      *
  769.      * @ORM\Column(name="mfra", type="string", length=22, nullable=true)
  770.      */
  771.     private $mfra;
  772.     /**
  773.      * @var string|null
  774.      *
  775.      * @ORM\Column(name="mboiler", type="string", length=22, nullable=true)
  776.      */
  777.     private $mboiler;
  778.     /**
  779.      * @var string|null
  780.      *
  781.      * @ORM\Column(name="mpat", type="string", length=22, nullable=true)
  782.      */
  783.     private $mpat;
  784.     /**
  785.      * @var string|null
  786.      *
  787.      * @ORM\Column(name="melectrictest", type="string", length=22, nullable=true)
  788.      */
  789.     private $melectrictest;
  790.     /**
  791.      * @var string|null
  792.      *
  793.      * @ORM\Column(name="mlegionela", type="string", length=22, nullable=true)
  794.      */
  795.     private $mlegionela;
  796.     /**
  797.      * @var string|null
  798.      *
  799.      * @ORM\Column(name="minsurrance", type="string", length=22, nullable=true)
  800.      */
  801.     private $minsurrance;
  802.     /**
  803.      * @var string|null
  804.      *
  805.      * @ORM\Column(name="meBlindCord", type="string", length=22, nullable=true)
  806.      */
  807.     private $meblindcord;
  808.     /**
  809.      * @var string|null
  810.      *
  811.      * @ORM\Column(name="mcot", type="string", length=22, nullable=true)
  812.      */
  813.     private $mcot;
  814.     /**
  815.      * @var string|null
  816.      *
  817.      * @ORM\Column(name="mcotprop", type="string", length=22, nullable=true)
  818.      */
  819.     private $mcotprop;
  820.     /**
  821.      * @var string|null
  822.      *
  823.      * @ORM\Column(name="mhighchair", type="string", length=22, nullable=true)
  824.      */
  825.     private $mhighchair;
  826.     /**
  827.      * @var string|null
  828.      *
  829.      * @ORM\Column(name="mhighchairprop", type="string", length=22, nullable=true)
  830.      */
  831.     private $mhighchairprop;
  832.     /**
  833.      * @var string|null
  834.      *
  835.      * @ORM\Column(name="mstairgate", type="string", length=22, nullable=true)
  836.      */
  837.     private $mstairgate;
  838.     /**
  839.      * @var string|null
  840.      *
  841.      * @ORM\Column(name="mstairgateprop", type="string", length=22, nullable=true)
  842.      */
  843.     private $mstairgateprop;
  844.     /**
  845.      * @var string|null
  846.      *
  847.      * @ORM\Column(name="mnotes", type="text", length=65535, nullable=true)
  848.      */
  849.     private $mnotes;
  850.     /**
  851.      * @var string|null
  852.      *
  853.      * @ORM\Column(name="mpic1", type="string", length=191, nullable=true)
  854.      */
  855.     private $mpic1;
  856.     /**
  857.      * @var string|null
  858.      *
  859.      * @ORM\Column(name="mpic2", type="string", length=191, nullable=true)
  860.      */
  861.     private $mpic2;
  862.     /**
  863.      * @var string|null
  864.      *
  865.      * @ORM\Column(name="mpic3", type="string", length=191, nullable=true)
  866.      */
  867.     private $mpic3;
  868.     /**
  869.      * @var string|null
  870.      *
  871.      * @ORM\Column(name="mpic4", type="string", length=191, nullable=true)
  872.      */
  873.     private $mpic4;
  874.     /**
  875.      * @var string|null
  876.      *
  877.      * @ORM\Column(name="ffeachfloor", type="string", length=22, nullable=true)
  878.      */
  879.     private $ffeachfloor;
  880.     /**
  881.      * @var string|null
  882.      *
  883.      * @ORM\Column(name="ffpressure", type="string", length=22, nullable=true)
  884.      */
  885.     private $ffpressure;
  886.     /**
  887.      * @var string|null
  888.      *
  889.      * @ORM\Column(name="ffvi", type="string", length=22, nullable=true)
  890.      */
  891.     private $ffvi;
  892.     /**
  893.      * @var string|null
  894.      *
  895.      * @ORM\Column(name="ffseal", type="string", length=22, nullable=true)
  896.      */
  897.     private $ffseal;
  898.     /**
  899.      * @var \DateTime|null
  900.      *
  901.      * @ORM\Column(name="ffdate", type="datetime", nullable=true)
  902.      */
  903.     private $ffdate;
  904.     /**
  905.      * @var string|null
  906.      *
  907.      * @ORM\Column(name="ffcoment", type="text", length=65535, nullable=true)
  908.      */
  909.     private $ffcoment;
  910.     /**
  911.      * @var string|null
  912.      *
  913.      * @ORM\Column(name="fbtab", type="string", length=22, nullable=true)
  914.      */
  915.     private $fbtab;
  916.     /**
  917.      * @var string|null
  918.      *
  919.      * @ORM\Column(name="fbvi", type="string", length=22, nullable=true)
  920.      */
  921.     private $fbvi;
  922.     /**
  923.      * @var string|null
  924.      *
  925.      * @ORM\Column(name="fbcoment", type="text", length=65535, nullable=true)
  926.      */
  927.     private $fbcoment;
  928.     /**
  929.      * @var string|null
  930.      *
  931.      * @ORM\Column(name="fevi", type="string", length=22, nullable=true)
  932.      */
  933.     private $fevi;
  934.     /**
  935.      * @var string|null
  936.      *
  937.      * @ORM\Column(name="fecoment", type="text", length=65535, nullable=true)
  938.      */
  939.     private $fecoment;
  940.     /**
  941.      * @var string|null
  942.      *
  943.      * @ORM\Column(name="fsvi", type="string", length=22, nullable=true)
  944.      */
  945.     private $fsvi;
  946.     /**
  947.      * @var string|null
  948.      *
  949.      * @ORM\Column(name="fscoment", type="text", length=65535, nullable=true)
  950.      */
  951.     private $fscoment;
  952.     /**
  953.      * @var string|null
  954.      *
  955.      * @ORM\Column(name="fwtemp", type="string", length=22, nullable=true)
  956.      */
  957.     private $fwtemp;
  958.     /**
  959.      * @var string|null
  960.      *
  961.      * @ORM\Column(name="chimney", type="string", length=22, nullable=true)
  962.      */
  963.     private $chimney;
  964.     /**
  965.      * @var \DateTime|null
  966.      *
  967.      * @ORM\Column(name="chimneydate", type="datetime", nullable=true)
  968.      */
  969.     private $chimneydate;
  970.     /**
  971.      * @var string|null
  972.      *
  973.      * @ORM\Column(name="fwcoment", type="text", length=65535, nullable=true)
  974.      */
  975.     private $fwcoment;
  976.     /**
  977.      * @var string|null
  978.      *
  979.      * @ORM\Column(name="faplace", type="string", length=22, nullable=true)
  980.      */
  981.     private $faplace;
  982.     /**
  983.      * @var string|null
  984.      *
  985.      * @ORM\Column(name="fadesign", type="string", length=22, nullable=true)
  986.      */
  987.     private $fadesign;
  988.     /**
  989.      * @var string|null
  990.      *
  991.      * @ORM\Column(name="favi", type="string", length=22, nullable=true)
  992.      */
  993.     private $favi;
  994.     /**
  995.      * @var string|null
  996.      *
  997.      * @ORM\Column(name="facoment", type="text", length=65535, nullable=true)
  998.      */
  999.     private $facoment;
  1000.     /**
  1001.      * @var string|null
  1002.      *
  1003.      * @ORM\Column(name="fcloc", type="string", length=22, nullable=true)
  1004.      */
  1005.     private $fcloc;
  1006.     /**
  1007.      * @var string|null
  1008.      *
  1009.      * @ORM\Column(name="fcdesign", type="string", length=22, nullable=true)
  1010.      */
  1011.     private $fcdesign;
  1012.     /**
  1013.      * @var string|null
  1014.      *
  1015.      * @ORM\Column(name="fcvi", type="string", length=22, nullable=true)
  1016.      */
  1017.     private $fcvi;
  1018.     /**
  1019.      * @var string|null
  1020.      *
  1021.      * @ORM\Column(name="fccoment", type="text", length=65535, nullable=true)
  1022.      */
  1023.     private $fccoment;
  1024.     /**
  1025.      * @var string|null
  1026.      *
  1027.      * @ORM\Column(name="summary", type="text", length=65535, nullable=true)
  1028.      */
  1029.     private $summary;
  1030.     /**
  1031.      * @var string|null
  1032.      *
  1033.      * @ORM\Column(name="miscpic1", type="string", length=191, nullable=true)
  1034.      */
  1035.     private $miscpic1;
  1036.     /**
  1037.      * @var string|null
  1038.      *
  1039.      * @ORM\Column(name="miscpic2", type="string", length=191, nullable=true)
  1040.      */
  1041.     private $miscpic2;
  1042.     /**
  1043.      * @var string|null
  1044.      *
  1045.      * @ORM\Column(name="miscpic3", type="string", length=191, nullable=true)
  1046.      */
  1047.     private $miscpic3;
  1048.     /**
  1049.      * @var string|null
  1050.      *
  1051.      * @ORM\Column(name="miscpic4", type="string", length=191, nullable=true)
  1052.      */
  1053.     private $miscpic4;
  1054.     /**
  1055.      * @var string|null
  1056.      *
  1057.      * @ORM\Column(name="Exterior_Total", type="string", length=20, nullable=true)
  1058.      */
  1059.     private $exteriorTotal;
  1060.     /**
  1061.      * @var string|null
  1062.      *
  1063.      * @ORM\Column(name="Bedroom_Score", type="string", length=20, nullable=true)
  1064.      */
  1065.     private $bedroomScore;
  1066.     /**
  1067.      * @var string|null
  1068.      *
  1069.      * @ORM\Column(name="Bathroom_Score", type="string", length=20, nullable=true)
  1070.      */
  1071.     private $bathroomScore;
  1072.     /**
  1073.      * @var string|null
  1074.      *
  1075.      * @ORM\Column(name="Kitchen_Score", type="string", length=20, nullable=true)
  1076.      */
  1077.     private $kitchenScore;
  1078.     /**
  1079.      * @var string|null
  1080.      *
  1081.      * @ORM\Column(name="Cleanliness_Score", type="string", length=20, nullable=true)
  1082.      */
  1083.     private $cleanlinessScore;
  1084.     /**
  1085.      * @var string|null
  1086.      *
  1087.      * @ORM\Column(name="Management_Efficiency_Score", type="string", length=20, nullable=true)
  1088.      */
  1089.     private $managementEfficiencyScore;
  1090.     /**
  1091.      * @var string|null
  1092.      *
  1093.      * @ORM\Column(name="Public_Area_Score", type="string", length=20, nullable=true)
  1094.      */
  1095.     private $publicAreaScore;
  1096.     /**
  1097.      * @var string|null
  1098.      *
  1099.      * @ORM\Column(name="Total_Score", type="string", length=20, nullable=true)
  1100.      */
  1101.     private $totalScore;
  1102.     /**
  1103.      * @var string|null
  1104.      *
  1105.      * @ORM\Column(name="stars", type="string", length=20, nullable=true)
  1106.      */
  1107.     private $stars;
  1108.     /**
  1109.      * @ORM\OneToMany(targetEntity=Bedroom::class, mappedBy="forms", cascade={"persist"})
  1110.      */
  1111.     private $bedroom;
  1112.     /**
  1113.      * @ORM\OneToMany(targetEntity=Bathroom::class, mappedBy="forms")
  1114.      */
  1115.     private $bathroom;
  1116.     /**
  1117.      * @ORM\Column(type="boolean")
  1118.      */
  1119.     private $isDeleted;
  1120.     /**
  1121.      * @ORM\Column(type="string", length=22, nullable=true)
  1122.      */
  1123.     private $ptv;
  1124.     public function __construct()
  1125.     {
  1126.         $this->bedroom = new ArrayCollection();
  1127.         $this->bathroom = new ArrayCollection();
  1128.     }
  1129.     public function getId(): ?int
  1130.     {
  1131.         return $this->id;
  1132.     }
  1133.     public function getDate(): ?\DateTimeInterface
  1134.     {
  1135.         return $this->date;
  1136.     }
  1137.     public function setDate(?\DateTimeInterface $date): self
  1138.     {
  1139.         $this->date $date;
  1140.         return $this;
  1141.     }
  1142.     public function getUuid(): ?string
  1143.     {
  1144.         return $this->uuid;
  1145.     }
  1146.     public function setUuid(?string $uuid): self
  1147.     {
  1148.         $this->uuid $uuid;
  1149.         return $this;
  1150.     }
  1151.     public function getVersion(): ?int
  1152.     {
  1153.         return $this->version;
  1154.     }
  1155.     public function setVersion(?int $version): self
  1156.     {
  1157.         $this->version $version;
  1158.         return $this;
  1159.     }
  1160.     public function getUserId(): ?int
  1161.     {
  1162.         return $this->userId;
  1163.     }
  1164.     public function setUserId(?int $userId): self
  1165.     {
  1166.         $this->userId $userId;
  1167.         return $this;
  1168.     }
  1169.     public function getBrand(): ?string
  1170.     {
  1171.         return $this->brand;
  1172.     }
  1173.     public function setBrand(?string $brand): self
  1174.     {
  1175.         $this->brand $brand;
  1176.         return $this;
  1177.     }
  1178.     public function getPropname(): ?string
  1179.     {
  1180.         return $this->propname;
  1181.     }
  1182.     public function setPropname(?string $propname): self
  1183.     {
  1184.         $this->propname $propname;
  1185.         return $this;
  1186.     }
  1187.     public function getExtbuildappear(): ?string
  1188.     {
  1189.         return $this->extbuildappear;
  1190.     }
  1191.     public function setExtbuildappear(?string $extbuildappear): self
  1192.     {
  1193.         $this->extbuildappear $extbuildappear;
  1194.         return $this;
  1195.     }
  1196.     public function getExtparkfacility(): ?string
  1197.     {
  1198.         return $this->extparkfacility;
  1199.     }
  1200.     public function setExtparkfacility(?string $extparkfacility): self
  1201.     {
  1202.         $this->extparkfacility $extparkfacility;
  1203.         return $this;
  1204.     }
  1205.     public function getExtsiding(): ?string
  1206.     {
  1207.         return $this->extsiding;
  1208.     }
  1209.     public function setExtsiding(?string $extsiding): self
  1210.     {
  1211.         $this->extsiding $extsiding;
  1212.         return $this;
  1213.     }
  1214.     public function getExtwall(): ?string
  1215.     {
  1216.         return $this->extwall;
  1217.     }
  1218.     public function setExtwall(?string $extwall): self
  1219.     {
  1220.         $this->extwall $extwall;
  1221.         return $this;
  1222.     }
  1223.     public function getExtbarbecus(): ?string
  1224.     {
  1225.         return $this->extbarbecus;
  1226.     }
  1227.     public function setExtbarbecus(?string $extbarbecus): self
  1228.     {
  1229.         $this->extbarbecus $extbarbecus;
  1230.         return $this;
  1231.     }
  1232.     public function getExtgarfurniture(): ?string
  1233.     {
  1234.         return $this->extgarfurniture;
  1235.     }
  1236.     public function setExtgarfurniture(?string $extgarfurniture): self
  1237.     {
  1238.         $this->extgarfurniture $extgarfurniture;
  1239.         return $this;
  1240.     }
  1241.     public function getExtgates(): ?string
  1242.     {
  1243.         return $this->extgates;
  1244.     }
  1245.     public function setExtgates(?string $extgates): self
  1246.     {
  1247.         $this->extgates $extgates;
  1248.         return $this;
  1249.     }
  1250.     public function getExtdogs(): ?string
  1251.     {
  1252.         return $this->extdogs;
  1253.     }
  1254.     public function setExtdogs(?string $extdogs): self
  1255.     {
  1256.         $this->extdogs $extdogs;
  1257.         return $this;
  1258.     }
  1259.     public function getExtnotes(): ?string
  1260.     {
  1261.         return $this->extnotes;
  1262.     }
  1263.     public function setExtnotes(?string $extnotes): self
  1264.     {
  1265.         $this->extnotes $extnotes;
  1266.         return $this;
  1267.     }
  1268.     public function getExtpic1(): ?string
  1269.     {
  1270.         return $this->extpic1;
  1271.     }
  1272.     public function setExtpic1(?string $extpic1): self
  1273.     {
  1274.         $this->extpic1 $extpic1;
  1275.         return $this;
  1276.     }
  1277.     public function getExtpic2(): ?string
  1278.     {
  1279.         return $this->extpic2;
  1280.     }
  1281.     public function setExtpic2(?string $extpic2): self
  1282.     {
  1283.         $this->extpic2 $extpic2;
  1284.         return $this;
  1285.     }
  1286.     public function getExtpic3(): ?string
  1287.     {
  1288.         return $this->extpic3;
  1289.     }
  1290.     public function setExtpic3(?string $extpic3): self
  1291.     {
  1292.         $this->extpic3 $extpic3;
  1293.         return $this;
  1294.     }
  1295.     public function getExtpic4(): ?string
  1296.     {
  1297.         return $this->extpic4;
  1298.     }
  1299.     public function setExtpic4(?string $extpic4): self
  1300.     {
  1301.         $this->extpic4 $extpic4;
  1302.         return $this;
  1303.     }
  1304.     public function getBeddecor(): ?string
  1305.     {
  1306.         return $this->beddecor;
  1307.     }
  1308.     public function setBeddecor(?string $beddecor): self
  1309.     {
  1310.         $this->beddecor $beddecor;
  1311.         return $this;
  1312.     }
  1313.     public function getBedfurniture(): ?string
  1314.     {
  1315.         return $this->bedfurniture;
  1316.     }
  1317.     public function setBedfurniture(?string $bedfurniture): self
  1318.     {
  1319.         $this->bedfurniture $bedfurniture;
  1320.         return $this;
  1321.     }
  1322.     public function getBedflooring(): ?string
  1323.     {
  1324.         return $this->bedflooring;
  1325.     }
  1326.     public function setBedflooring(?string $bedflooring): self
  1327.     {
  1328.         $this->bedflooring $bedflooring;
  1329.         return $this;
  1330.     }
  1331.     public function getBedlight(): ?string
  1332.     {
  1333.         return $this->bedlight;
  1334.     }
  1335.     public function setBedlight(?string $bedlight): self
  1336.     {
  1337.         $this->bedlight $bedlight;
  1338.         return $this;
  1339.     }
  1340.     public function getBedbeds(): ?string
  1341.     {
  1342.         return $this->bedbeds;
  1343.     }
  1344.     public function setBedbeds(?string $bedbeds): self
  1345.     {
  1346.         $this->bedbeds $bedbeds;
  1347.         return $this;
  1348.     }
  1349.     public function getBedbedding(): ?string
  1350.     {
  1351.         return $this->bedbedding;
  1352.     }
  1353.     public function setBedbedding(?string $bedbedding): self
  1354.     {
  1355.         $this->bedbedding $bedbedding;
  1356.         return $this;
  1357.     }
  1358.     public function getBediflooring(): ?string
  1359.     {
  1360.         return $this->bediflooring;
  1361.     }
  1362.     public function setBediflooring(?string $bediflooring): self
  1363.     {
  1364.         $this->bediflooring $bediflooring;
  1365.         return $this;
  1366.     }
  1367.     public function getBedcurtain(): ?string
  1368.     {
  1369.         return $this->bedcurtain;
  1370.     }
  1371.     public function setBedcurtain(?string $bedcurtain): self
  1372.     {
  1373.         $this->bedcurtain $bedcurtain;
  1374.         return $this;
  1375.     }
  1376.     public function getBedheadboard(): ?string
  1377.     {
  1378.         return $this->bedheadboard;
  1379.     }
  1380.     public function setBedheadboard(?string $bedheadboard): self
  1381.     {
  1382.         $this->bedheadboard $bedheadboard;
  1383.         return $this;
  1384.     }
  1385.     public function getBedmatress(): ?string
  1386.     {
  1387.         return $this->bedmatress;
  1388.     }
  1389.     public function setBedmatress(?string $bedmatress): self
  1390.     {
  1391.         $this->bedmatress $bedmatress;
  1392.         return $this;
  1393.     }
  1394.     public function getBedmatressp(): ?string
  1395.     {
  1396.         return $this->bedmatressp;
  1397.     }
  1398.     public function setBedmatressp(?string $bedmatressp): self
  1399.     {
  1400.         $this->bedmatressp $bedmatressp;
  1401.         return $this;
  1402.     }
  1403.     public function getBedduvet(): ?string
  1404.     {
  1405.         return $this->bedduvet;
  1406.     }
  1407.     public function setBedduvet(?string $bedduvet): self
  1408.     {
  1409.         $this->bedduvet $bedduvet;
  1410.         return $this;
  1411.     }
  1412.     public function getBedvalances(): ?string
  1413.     {
  1414.         return $this->bedvalances;
  1415.     }
  1416.     public function setBedvalances(?string $bedvalances): self
  1417.     {
  1418.         $this->bedvalances $bedvalances;
  1419.         return $this;
  1420.     }
  1421.     public function getBedpillow(): ?string
  1422.     {
  1423.         return $this->bedpillow;
  1424.     }
  1425.     public function setBedpillow(?string $bedpillow): self
  1426.     {
  1427.         $this->bedpillow $bedpillow;
  1428.         return $this;
  1429.     }
  1430.     public function getBedpillowslips(): ?string
  1431.     {
  1432.         return $this->bedpillowslips;
  1433.     }
  1434.     public function setBedpillowslips(?string $bedpillowslips): self
  1435.     {
  1436.         $this->bedpillowslips $bedpillowslips;
  1437.         return $this;
  1438.     }
  1439.     public function getBedbstable(): ?string
  1440.     {
  1441.         return $this->bedbstable;
  1442.     }
  1443.     public function setBedbstable(?string $bedbstable): self
  1444.     {
  1445.         $this->bedbstable $bedbstable;
  1446.         return $this;
  1447.     }
  1448.     public function getBedhanger(): ?string
  1449.     {
  1450.         return $this->bedhanger;
  1451.     }
  1452.     public function setBedhanger(?string $bedhanger): self
  1453.     {
  1454.         $this->bedhanger $bedhanger;
  1455.         return $this;
  1456.     }
  1457.     public function getBedmirror(): ?string
  1458.     {
  1459.         return $this->bedmirror;
  1460.     }
  1461.     public function setBedmirror(?string $bedmirror): self
  1462.     {
  1463.         $this->bedmirror $bedmirror;
  1464.         return $this;
  1465.     }
  1466.     public function getBedwardrobe(): ?string
  1467.     {
  1468.         return $this->bedwardrobe;
  1469.     }
  1470.     public function setBedwardrobe(?string $bedwardrobe): self
  1471.     {
  1472.         $this->bedwardrobe $bedwardrobe;
  1473.         return $this;
  1474.     }
  1475.     public function getBedbin(): ?string
  1476.     {
  1477.         return $this->bedbin;
  1478.     }
  1479.     public function setBedbin(?string $bedbin): self
  1480.     {
  1481.         $this->bedbin $bedbin;
  1482.         return $this;
  1483.     }
  1484.     public function getBednotes(): ?string
  1485.     {
  1486.         return $this->bednotes;
  1487.     }
  1488.     public function setBednotes(?string $bednotes): self
  1489.     {
  1490.         $this->bednotes $bednotes;
  1491.         return $this;
  1492.     }
  1493.     public function getBedpic1(): ?string
  1494.     {
  1495.         return $this->bedpic1;
  1496.     }
  1497.     public function setBedpic1(?string $bedpic1): self
  1498.     {
  1499.         $this->bedpic1 $bedpic1;
  1500.         return $this;
  1501.     }
  1502.     public function getBedpic2(): ?string
  1503.     {
  1504.         return $this->bedpic2;
  1505.     }
  1506.     public function setBedpic2(?string $bedpic2): self
  1507.     {
  1508.         $this->bedpic2 $bedpic2;
  1509.         return $this;
  1510.     }
  1511.     public function getBedpic3(): ?string
  1512.     {
  1513.         return $this->bedpic3;
  1514.     }
  1515.     public function setBedpic3(?string $bedpic3): self
  1516.     {
  1517.         $this->bedpic3 $bedpic3;
  1518.         return $this;
  1519.     }
  1520.     public function getBedpic4(): ?string
  1521.     {
  1522.         return $this->bedpic4;
  1523.     }
  1524.     public function setBedpic4(?string $bedpic4): self
  1525.     {
  1526.         $this->bedpic4 $bedpic4;
  1527.         return $this;
  1528.     }
  1529.     public function getBathdecor(): ?string
  1530.     {
  1531.         return $this->bathdecor;
  1532.     }
  1533.     public function setBathdecor(?string $bathdecor): self
  1534.     {
  1535.         $this->bathdecor $bathdecor;
  1536.         return $this;
  1537.     }
  1538.     public function getBathfurniture(): ?string
  1539.     {
  1540.         return $this->bathfurniture;
  1541.     }
  1542.     public function setBathfurniture(?string $bathfurniture): self
  1543.     {
  1544.         $this->bathfurniture $bathfurniture;
  1545.         return $this;
  1546.     }
  1547.     public function getBathflooring(): ?string
  1548.     {
  1549.         return $this->bathflooring;
  1550.     }
  1551.     public function setBathflooring(?string $bathflooring): self
  1552.     {
  1553.         $this->bathflooring $bathflooring;
  1554.         return $this;
  1555.     }
  1556.     public function getBathlighting(): ?string
  1557.     {
  1558.         return $this->bathlighting;
  1559.     }
  1560.     public function setBathlighting(?string $bathlighting): self
  1561.     {
  1562.         $this->bathlighting $bathlighting;
  1563.         return $this;
  1564.     }
  1565.     public function getBathbrush(): ?string
  1566.     {
  1567.         return $this->bathbrush;
  1568.     }
  1569.     public function setBathbrush(?string $bathbrush): self
  1570.     {
  1571.         $this->bathbrush $bathbrush;
  1572.         return $this;
  1573.     }
  1574.     public function getBathmirror(): ?string
  1575.     {
  1576.         return $this->bathmirror;
  1577.     }
  1578.     public function setBathmirror(?string $bathmirror): self
  1579.     {
  1580.         $this->bathmirror $bathmirror;
  1581.         return $this;
  1582.     }
  1583.     public function getBathshave(): ?string
  1584.     {
  1585.         return $this->bathshave;
  1586.     }
  1587.     public function setBathshave(?string $bathshave): self
  1588.     {
  1589.         $this->bathshave $bathshave;
  1590.         return $this;
  1591.     }
  1592.     public function getBathmat(): ?string
  1593.     {
  1594.         return $this->bathmat;
  1595.     }
  1596.     public function setBathmat(?string $bathmat): self
  1597.     {
  1598.         $this->bathmat $bathmat;
  1599.         return $this;
  1600.     }
  1601.     public function getBathbin(): ?string
  1602.     {
  1603.         return $this->bathbin;
  1604.     }
  1605.     public function setBathbin(?string $bathbin): self
  1606.     {
  1607.         $this->bathbin $bathbin;
  1608.         return $this;
  1609.     }
  1610.     public function getBathtowelrack(): ?string
  1611.     {
  1612.         return $this->bathtowelrack;
  1613.     }
  1614.     public function setBathtowelrack(?string $bathtowelrack): self
  1615.     {
  1616.         $this->bathtowelrack $bathtowelrack;
  1617.         return $this;
  1618.     }
  1619.     public function getBathnotes(): ?string
  1620.     {
  1621.         return $this->bathnotes;
  1622.     }
  1623.     public function setBathnotes(?string $bathnotes): self
  1624.     {
  1625.         $this->bathnotes $bathnotes;
  1626.         return $this;
  1627.     }
  1628.     public function getBathpic1(): ?string
  1629.     {
  1630.         return $this->bathpic1;
  1631.     }
  1632.     public function setBathpic1(?string $bathpic1): self
  1633.     {
  1634.         $this->bathpic1 $bathpic1;
  1635.         return $this;
  1636.     }
  1637.     public function getBathpic2(): ?string
  1638.     {
  1639.         return $this->bathpic2;
  1640.     }
  1641.     public function setBathpic2(?string $bathpic2): self
  1642.     {
  1643.         $this->bathpic2 $bathpic2;
  1644.         return $this;
  1645.     }
  1646.     public function getBathpic3(): ?string
  1647.     {
  1648.         return $this->bathpic3;
  1649.     }
  1650.     public function setBathpic3(?string $bathpic3): self
  1651.     {
  1652.         $this->bathpic3 $bathpic3;
  1653.         return $this;
  1654.     }
  1655.     public function getBathpic4(): ?string
  1656.     {
  1657.         return $this->bathpic4;
  1658.     }
  1659.     public function setBathpic4(?string $bathpic4): self
  1660.     {
  1661.         $this->bathpic4 $bathpic4;
  1662.         return $this;
  1663.     }
  1664.     public function getKitdecor(): ?string
  1665.     {
  1666.         return $this->kitdecor;
  1667.     }
  1668.     public function setKitdecor(?string $kitdecor): self
  1669.     {
  1670.         $this->kitdecor $kitdecor;
  1671.         return $this;
  1672.     }
  1673.     public function getKitfurniture(): ?string
  1674.     {
  1675.         return $this->kitfurniture;
  1676.     }
  1677.     public function setKitfurniture(?string $kitfurniture): self
  1678.     {
  1679.         $this->kitfurniture $kitfurniture;
  1680.         return $this;
  1681.     }
  1682.     public function getKitflooring(): ?string
  1683.     {
  1684.         return $this->kitflooring;
  1685.     }
  1686.     public function setKitflooring(?string $kitflooring): self
  1687.     {
  1688.         $this->kitflooring $kitflooring;
  1689.         return $this;
  1690.     }
  1691.     public function getKitlighting(): ?string
  1692.     {
  1693.         return $this->kitlighting;
  1694.     }
  1695.     public function setKitlighting(?string $kitlighting): self
  1696.     {
  1697.         $this->kitlighting $kitlighting;
  1698.         return $this;
  1699.     }
  1700.     public function getKitgas(): ?string
  1701.     {
  1702.         return $this->kitgas;
  1703.     }
  1704.     public function setKitgas(?string $kitgas): self
  1705.     {
  1706.         $this->kitgas $kitgas;
  1707.         return $this;
  1708.     }
  1709.     public function getKitequipment(): ?string
  1710.     {
  1711.         return $this->kitequipment;
  1712.     }
  1713.     public function setKitequipment(?string $kitequipment): self
  1714.     {
  1715.         $this->kitequipment $kitequipment;
  1716.         return $this;
  1717.     }
  1718.     public function getKitutensils(): ?string
  1719.     {
  1720.         return $this->kitutensils;
  1721.     }
  1722.     public function setKitutensils(?string $kitutensils): self
  1723.     {
  1724.         $this->kitutensils $kitutensils;
  1725.         return $this;
  1726.     }
  1727.     public function getKiticooker(): ?string
  1728.     {
  1729.         return $this->kiticooker;
  1730.     }
  1731.     public function setKiticooker(?string $kiticooker): self
  1732.     {
  1733.         $this->kiticooker $kiticooker;
  1734.         return $this;
  1735.     }
  1736.     public function getKitifreezer(): ?string
  1737.     {
  1738.         return $this->kitifreezer;
  1739.     }
  1740.     public function setKitifreezer(?string $kitifreezer): self
  1741.     {
  1742.         $this->kitifreezer $kitifreezer;
  1743.         return $this;
  1744.     }
  1745.     public function getKitwashmachine(): ?string
  1746.     {
  1747.         return $this->kitwashmachine;
  1748.     }
  1749.     public function setKitwashmachine(?string $kitwashmachine): self
  1750.     {
  1751.         $this->kitwashmachine $kitwashmachine;
  1752.         return $this;
  1753.     }
  1754.     public function getKitdryer(): ?string
  1755.     {
  1756.         return $this->kitdryer;
  1757.     }
  1758.     public function setKitdryer(?string $kitdryer): self
  1759.     {
  1760.         $this->kitdryer $kitdryer;
  1761.         return $this;
  1762.     }
  1763.     public function getKitiron(): ?string
  1764.     {
  1765.         return $this->kitiron;
  1766.     }
  1767.     public function setKitiron(?string $kitiron): self
  1768.     {
  1769.         $this->kitiron $kitiron;
  1770.         return $this;
  1771.     }
  1772.     public function getKitwasher(): ?string
  1773.     {
  1774.         return $this->kitwasher;
  1775.     }
  1776.     public function setKitwasher(?string $kitwasher): self
  1777.     {
  1778.         $this->kitwasher $kitwasher;
  1779.         return $this;
  1780.     }
  1781.     public function getKitmicrowave(): ?string
  1782.     {
  1783.         return $this->kitmicrowave;
  1784.     }
  1785.     public function setKitmicrowave(?string $kitmicrowave): self
  1786.     {
  1787.         $this->kitmicrowave $kitmicrowave;
  1788.         return $this;
  1789.     }
  1790.     public function getKitkettle(): ?string
  1791.     {
  1792.         return $this->kitkettle;
  1793.     }
  1794.     public function setKitkettle(?string $kitkettle): self
  1795.     {
  1796.         $this->kitkettle $kitkettle;
  1797.         return $this;
  1798.     }
  1799.     public function getKittoaster(): ?string
  1800.     {
  1801.         return $this->kittoaster;
  1802.     }
  1803.     public function setKittoaster(?string $kittoaster): self
  1804.     {
  1805.         $this->kittoaster $kittoaster;
  1806.         return $this;
  1807.     }
  1808.     public function getKitsaucepan(): ?string
  1809.     {
  1810.         return $this->kitsaucepan;
  1811.     }
  1812.     public function setKitsaucepan(?string $kitsaucepan): self
  1813.     {
  1814.         $this->kitsaucepan $kitsaucepan;
  1815.         return $this;
  1816.     }
  1817.     public function getKitfrypan(): ?string
  1818.     {
  1819.         return $this->kitfrypan;
  1820.     }
  1821.     public function setKitfrypan(?string $kitfrypan): self
  1822.     {
  1823.         $this->kitfrypan $kitfrypan;
  1824.         return $this;
  1825.     }
  1826.     public function getKitiutensils(): ?string
  1827.     {
  1828.         return $this->kitiutensils;
  1829.     }
  1830.     public function setKitiutensils(?string $kitiutensils): self
  1831.     {
  1832.         $this->kitiutensils $kitiutensils;
  1833.         return $this;
  1834.     }
  1835.     public function getKtcookware(): ?string
  1836.     {
  1837.         return $this->ktcookware;
  1838.     }
  1839.     public function setKtcookware(?string $ktcookware): self
  1840.     {
  1841.         $this->ktcookware $ktcookware;
  1842.         return $this;
  1843.     }
  1844.     public function getKitcutlery(): ?string
  1845.     {
  1846.         return $this->kitcutlery;
  1847.     }
  1848.     public function setKitcutlery(?string $kitcutlery): self
  1849.     {
  1850.         $this->kitcutlery $kitcutlery;
  1851.         return $this;
  1852.     }
  1853.     public function getKitcrockery(): ?string
  1854.     {
  1855.         return $this->kitcrockery;
  1856.     }
  1857.     public function setKitcrockery(?string $kitcrockery): self
  1858.     {
  1859.         $this->kitcrockery $kitcrockery;
  1860.         return $this;
  1861.     }
  1862.     public function getKitglasses(): ?string
  1863.     {
  1864.         return $this->kitglasses;
  1865.     }
  1866.     public function setKitglasses(?string $kitglasses): self
  1867.     {
  1868.         $this->kitglasses $kitglasses;
  1869.         return $this;
  1870.     }
  1871.     public function getKitsaltandpepper(): ?string
  1872.     {
  1873.         return $this->kitsaltandpepper;
  1874.     }
  1875.     public function setKitsaltandpepper(?string $kitsaltandpepper): self
  1876.     {
  1877.         $this->kitsaltandpepper $kitsaltandpepper;
  1878.         return $this;
  1879.     }
  1880.     public function getKitwup(): ?string
  1881.     {
  1882.         return $this->kitwup;
  1883.     }
  1884.     public function setKitwup(?string $kitwup): self
  1885.     {
  1886.         $this->kitwup $kitwup;
  1887.         return $this;
  1888.     }
  1889.     public function getKitclean(): ?string
  1890.     {
  1891.         return $this->kitclean;
  1892.     }
  1893.     public function setKitclean(?string $kitclean): self
  1894.     {
  1895.         $this->kitclean $kitclean;
  1896.         return $this;
  1897.     }
  1898.     public function getKitnotes(): ?string
  1899.     {
  1900.         return $this->kitnotes;
  1901.     }
  1902.     public function setKitnotes(?string $kitnotes): self
  1903.     {
  1904.         $this->kitnotes $kitnotes;
  1905.         return $this;
  1906.     }
  1907.     public function getKitpic1(): ?string
  1908.     {
  1909.         return $this->kitpic1;
  1910.     }
  1911.     public function setKitpic1(?string $kitpic1): self
  1912.     {
  1913.         $this->kitpic1 $kitpic1;
  1914.         return $this;
  1915.     }
  1916.     public function getKitpci2(): ?string
  1917.     {
  1918.         return $this->kitpci2;
  1919.     }
  1920.     public function setKitpci2(?string $kitpci2): self
  1921.     {
  1922.         $this->kitpci2 $kitpci2;
  1923.         return $this;
  1924.     }
  1925.     public function getKitpic3(): ?string
  1926.     {
  1927.         return $this->kitpic3;
  1928.     }
  1929.     public function setKitpic3(?string $kitpic3): self
  1930.     {
  1931.         $this->kitpic3 $kitpic3;
  1932.         return $this;
  1933.     }
  1934.     public function getKitpic4(): ?string
  1935.     {
  1936.         return $this->kitpic4;
  1937.     }
  1938.     public function setKitpic4(?string $kitpic4): self
  1939.     {
  1940.         $this->kitpic4 $kitpic4;
  1941.         return $this;
  1942.     }
  1943.     public function getPdecor(): ?string
  1944.     {
  1945.         return $this->pdecor;
  1946.     }
  1947.     public function setPdecor(?string $pdecor): self
  1948.     {
  1949.         $this->pdecor $pdecor;
  1950.         return $this;
  1951.     }
  1952.     public function getPfurniture(): ?string
  1953.     {
  1954.         return $this->pfurniture;
  1955.     }
  1956.     public function setPfurniture(?string $pfurniture): self
  1957.     {
  1958.         $this->pfurniture $pfurniture;
  1959.         return $this;
  1960.     }
  1961.     public function getPflooring(): ?string
  1962.     {
  1963.         return $this->pflooring;
  1964.     }
  1965.     public function setPflooring(?string $pflooring): self
  1966.     {
  1967.         $this->pflooring $pflooring;
  1968.         return $this;
  1969.     }
  1970.     public function getPlighting(): ?string
  1971.     {
  1972.         return $this->plighting;
  1973.     }
  1974.     public function setPlighting(?string $plighting): self
  1975.     {
  1976.         $this->plighting $plighting;
  1977.         return $this;
  1978.     }
  1979.     public function getPiflooring(): ?string
  1980.     {
  1981.         return $this->piflooring;
  1982.     }
  1983.     public function setPiflooring(?string $piflooring): self
  1984.     {
  1985.         $this->piflooring $piflooring;
  1986.         return $this;
  1987.     }
  1988.     public function getPseating(): ?string
  1989.     {
  1990.         return $this->pseating;
  1991.     }
  1992.     public function setPseating(?string $pseating): self
  1993.     {
  1994.         $this->pseating $pseating;
  1995.         return $this;
  1996.     }
  1997.     public function getPcurtain(): ?string
  1998.     {
  1999.         return $this->pcurtain;
  2000.     }
  2001.     public function setPcurtain(?string $pcurtain): self
  2002.     {
  2003.         $this->pcurtain $pcurtain;
  2004.         return $this;
  2005.     }
  2006.     public function getPcoffeetable(): ?string
  2007.     {
  2008.         return $this->pcoffeetable;
  2009.     }
  2010.     public function setPcoffeetable(?string $pcoffeetable): self
  2011.     {
  2012.         $this->pcoffeetable $pcoffeetable;
  2013.         return $this;
  2014.     }
  2015.     public function getPlamp(): ?string
  2016.     {
  2017.         return $this->plamp;
  2018.     }
  2019.     public function setPlamp(?string $plamp): self
  2020.     {
  2021.         $this->plamp $plamp;
  2022.         return $this;
  2023.     }
  2024.     public function getPdintable(): ?string
  2025.     {
  2026.         return $this->pdintable;
  2027.     }
  2028.     public function setPdintable(?string $pdintable): self
  2029.     {
  2030.         $this->pdintable $pdintable;
  2031.         return $this;
  2032.     }
  2033.     public function getPtablemat(): ?string
  2034.     {
  2035.         return $this->ptablemat;
  2036.     }
  2037.     public function setPtablemat(?string $ptablemat): self
  2038.     {
  2039.         $this->ptablemat $ptablemat;
  2040.         return $this;
  2041.     }
  2042.     public function getPbin(): ?string
  2043.     {
  2044.         return $this->pbin;
  2045.     }
  2046.     public function setPbin(?string $pbin): self
  2047.     {
  2048.         $this->pbin $pbin;
  2049.         return $this;
  2050.     }
  2051.     public function getPvaccum(): ?string
  2052.     {
  2053.         return $this->pvaccum;
  2054.     }
  2055.     public function setPvaccum(?string $pvaccum): self
  2056.     {
  2057.         $this->pvaccum $pvaccum;
  2058.         return $this;
  2059.     }
  2060.     public function getPnotes(): ?string
  2061.     {
  2062.         return $this->pnotes;
  2063.     }
  2064.     public function setPnotes(?string $pnotes): self
  2065.     {
  2066.         $this->pnotes $pnotes;
  2067.         return $this;
  2068.     }
  2069.     public function getPpic1(): ?string
  2070.     {
  2071.         return $this->ppic1;
  2072.     }
  2073.     public function setPpic1(?string $ppic1): self
  2074.     {
  2075.         $this->ppic1 $ppic1;
  2076.         return $this;
  2077.     }
  2078.     public function getPpic2(): ?string
  2079.     {
  2080.         return $this->ppic2;
  2081.     }
  2082.     public function setPpic2(?string $ppic2): self
  2083.     {
  2084.         $this->ppic2 $ppic2;
  2085.         return $this;
  2086.     }
  2087.     public function getPpic3(): ?string
  2088.     {
  2089.         return $this->ppic3;
  2090.     }
  2091.     public function setPpic3(?string $ppic3): self
  2092.     {
  2093.         $this->ppic3 $ppic3;
  2094.         return $this;
  2095.     }
  2096.     public function getPpic4(): ?string
  2097.     {
  2098.         return $this->ppic4;
  2099.     }
  2100.     public function setPpic4(?string $ppic4): self
  2101.     {
  2102.         $this->ppic4 $ppic4;
  2103.         return $this;
  2104.     }
  2105.     public function getCliving(): ?string
  2106.     {
  2107.         return $this->cliving;
  2108.     }
  2109.     public function setCliving(?string $cliving): self
  2110.     {
  2111.         $this->cliving $cliving;
  2112.         return $this;
  2113.     }
  2114.     public function getCbed(): ?string
  2115.     {
  2116.         return $this->cbed;
  2117.     }
  2118.     public function setCbed(?string $cbed): self
  2119.     {
  2120.         $this->cbed $cbed;
  2121.         return $this;
  2122.     }
  2123.     public function getCbath(): ?string
  2124.     {
  2125.         return $this->cbath;
  2126.     }
  2127.     public function setCbath(?string $cbath): self
  2128.     {
  2129.         $this->cbath $cbath;
  2130.         return $this;
  2131.     }
  2132.     public function getCkit(): ?string
  2133.     {
  2134.         return $this->ckit;
  2135.     }
  2136.     public function setCkit(?string $ckit): self
  2137.     {
  2138.         $this->ckit $ckit;
  2139.         return $this;
  2140.     }
  2141.     public function getCnotes(): ?string
  2142.     {
  2143.         return $this->cnotes;
  2144.     }
  2145.     public function setCnotes(?string $cnotes): self
  2146.     {
  2147.         $this->cnotes $cnotes;
  2148.         return $this;
  2149.     }
  2150.     public function getCpic1(): ?string
  2151.     {
  2152.         return $this->cpic1;
  2153.     }
  2154.     public function setCpic1(?string $cpic1): self
  2155.     {
  2156.         $this->cpic1 $cpic1;
  2157.         return $this;
  2158.     }
  2159.     public function getCpic2(): ?string
  2160.     {
  2161.         return $this->cpic2;
  2162.     }
  2163.     public function setCpic2(?string $cpic2): self
  2164.     {
  2165.         $this->cpic2 $cpic2;
  2166.         return $this;
  2167.     }
  2168.     public function getCpic3(): ?string
  2169.     {
  2170.         return $this->cpic3;
  2171.     }
  2172.     public function setCpic3(?string $cpic3): self
  2173.     {
  2174.         $this->cpic3 $cpic3;
  2175.         return $this;
  2176.     }
  2177.     public function getCpic4(): ?string
  2178.     {
  2179.         return $this->cpic4;
  2180.     }
  2181.     public function setCpic4(?string $cpic4): self
  2182.     {
  2183.         $this->cpic4 $cpic4;
  2184.         return $this;
  2185.     }
  2186.     public function getMinfo(): ?string
  2187.     {
  2188.         return $this->minfo;
  2189.     }
  2190.     public function setMinfo(?string $minfo): self
  2191.     {
  2192.         $this->minfo $minfo;
  2193.         return $this;
  2194.     }
  2195.     public function getMwelcome(): ?string
  2196.     {
  2197.         return $this->mwelcome;
  2198.     }
  2199.     public function setMwelcome(?string $mwelcome): self
  2200.     {
  2201.         $this->mwelcome $mwelcome;
  2202.         return $this;
  2203.     }
  2204.     public function getMarrival(): ?string
  2205.     {
  2206.         return $this->marrival;
  2207.     }
  2208.     public function setMarrival(?string $marrival): self
  2209.     {
  2210.         $this->marrival $marrival;
  2211.         return $this;
  2212.     }
  2213.     public function getMwifi(): ?string
  2214.     {
  2215.         return $this->mwifi;
  2216.     }
  2217.     public function setMwifi(?string $mwifi): self
  2218.     {
  2219.         $this->mwifi $mwifi;
  2220.         return $this;
  2221.     }
  2222.     public function getMaccessories(): ?string
  2223.     {
  2224.         return $this->maccessories;
  2225.     }
  2226.     public function setMaccessories(?string $maccessories): self
  2227.     {
  2228.         $this->maccessories $maccessories;
  2229.         return $this;
  2230.     }
  2231.     public function getMspace(): ?string
  2232.     {
  2233.         return $this->mspace;
  2234.     }
  2235.     public function setMspace(?string $mspace): self
  2236.     {
  2237.         $this->mspace $mspace;
  2238.         return $this;
  2239.     }
  2240.     public function getMfirerisk(): ?string
  2241.     {
  2242.         return $this->mfirerisk;
  2243.     }
  2244.     public function setMfirerisk(?string $mfirerisk): self
  2245.     {
  2246.         $this->mfirerisk $mfirerisk;
  2247.         return $this;
  2248.     }
  2249.     public function getMfra(): ?string
  2250.     {
  2251.         return $this->mfra;
  2252.     }
  2253.     public function setMfra(?string $mfra): self
  2254.     {
  2255.         $this->mfra $mfra;
  2256.         return $this;
  2257.     }
  2258.     public function getMboiler(): ?string
  2259.     {
  2260.         return $this->mboiler;
  2261.     }
  2262.     public function setMboiler(?string $mboiler): self
  2263.     {
  2264.         $this->mboiler $mboiler;
  2265.         return $this;
  2266.     }
  2267.     public function getMpat(): ?string
  2268.     {
  2269.         return $this->mpat;
  2270.     }
  2271.     public function setMpat(?string $mpat): self
  2272.     {
  2273.         $this->mpat $mpat;
  2274.         return $this;
  2275.     }
  2276.     public function getMelectrictest(): ?string
  2277.     {
  2278.         return $this->melectrictest;
  2279.     }
  2280.     public function setMelectrictest(?string $melectrictest): self
  2281.     {
  2282.         $this->melectrictest $melectrictest;
  2283.         return $this;
  2284.     }
  2285.     public function getMlegionela(): ?string
  2286.     {
  2287.         return $this->mlegionela;
  2288.     }
  2289.     public function setMlegionela(?string $mlegionela): self
  2290.     {
  2291.         $this->mlegionela $mlegionela;
  2292.         return $this;
  2293.     }
  2294.     public function getMinsurrance(): ?string
  2295.     {
  2296.         return $this->minsurrance;
  2297.     }
  2298.     public function setMinsurrance(?string $minsurrance): self
  2299.     {
  2300.         $this->minsurrance $minsurrance;
  2301.         return $this;
  2302.     }
  2303.     public function getMeblindcord(): ?string
  2304.     {
  2305.         return $this->meblindcord;
  2306.     }
  2307.     public function setMeblindcord(?string $meblindcord): self
  2308.     {
  2309.         $this->meblindcord $meblindcord;
  2310.         return $this;
  2311.     }
  2312.     public function getMcot(): ?string
  2313.     {
  2314.         return $this->mcot;
  2315.     }
  2316.     public function setMcot(?string $mcot): self
  2317.     {
  2318.         $this->mcot $mcot;
  2319.         return $this;
  2320.     }
  2321.     public function getMcotprop(): ?string
  2322.     {
  2323.         return $this->mcotprop;
  2324.     }
  2325.     public function setMcotprop(?string $mcotprop): self
  2326.     {
  2327.         $this->mcotprop $mcotprop;
  2328.         return $this;
  2329.     }
  2330.     public function getMhighchair(): ?string
  2331.     {
  2332.         return $this->mhighchair;
  2333.     }
  2334.     public function setMhighchair(?string $mhighchair): self
  2335.     {
  2336.         $this->mhighchair $mhighchair;
  2337.         return $this;
  2338.     }
  2339.     public function getMhighchairprop(): ?string
  2340.     {
  2341.         return $this->mhighchairprop;
  2342.     }
  2343.     public function setMhighchairprop(?string $mhighchairprop): self
  2344.     {
  2345.         $this->mhighchairprop $mhighchairprop;
  2346.         return $this;
  2347.     }
  2348.     public function getMstairgate(): ?string
  2349.     {
  2350.         return $this->mstairgate;
  2351.     }
  2352.     public function setMstairgate(?string $mstairgate): self
  2353.     {
  2354.         $this->mstairgate $mstairgate;
  2355.         return $this;
  2356.     }
  2357.     public function getMstairgateprop(): ?string
  2358.     {
  2359.         return $this->mstairgateprop;
  2360.     }
  2361.     public function setMstairgateprop(?string $mstairgateprop): self
  2362.     {
  2363.         $this->mstairgateprop $mstairgateprop;
  2364.         return $this;
  2365.     }
  2366.     public function getMnotes(): ?string
  2367.     {
  2368.         return $this->mnotes;
  2369.     }
  2370.     public function setMnotes(?string $mnotes): self
  2371.     {
  2372.         $this->mnotes $mnotes;
  2373.         return $this;
  2374.     }
  2375.     public function getMpic1(): ?string
  2376.     {
  2377.         return $this->mpic1;
  2378.     }
  2379.     public function setMpic1(?string $mpic1): self
  2380.     {
  2381.         $this->mpic1 $mpic1;
  2382.         return $this;
  2383.     }
  2384.     public function getMpic2(): ?string
  2385.     {
  2386.         return $this->mpic2;
  2387.     }
  2388.     public function setMpic2(?string $mpic2): self
  2389.     {
  2390.         $this->mpic2 $mpic2;
  2391.         return $this;
  2392.     }
  2393.     public function getMpic3(): ?string
  2394.     {
  2395.         return $this->mpic3;
  2396.     }
  2397.     public function setMpic3(?string $mpic3): self
  2398.     {
  2399.         $this->mpic3 $mpic3;
  2400.         return $this;
  2401.     }
  2402.     public function getMpic4(): ?string
  2403.     {
  2404.         return $this->mpic4;
  2405.     }
  2406.     public function setMpic4(?string $mpic4): self
  2407.     {
  2408.         $this->mpic4 $mpic4;
  2409.         return $this;
  2410.     }
  2411.     public function getFfpressure(): ?string
  2412.     {
  2413.         return $this->ffpressure;
  2414.     }
  2415.     public function setFfpressure(?string $ffpressure): self
  2416.     {
  2417.         $this->ffpressure $ffpressure;
  2418.         return $this;
  2419.     }
  2420.     public function getFfvi(): ?string
  2421.     {
  2422.         return $this->ffvi;
  2423.     }
  2424.     public function setFfvi(?string $ffvi): self
  2425.     {
  2426.         $this->ffvi $ffvi;
  2427.         return $this;
  2428.     }
  2429.     public function getFfseal(): ?string
  2430.     {
  2431.         return $this->ffseal;
  2432.     }
  2433.     public function setFfseal(?string $ffseal): self
  2434.     {
  2435.         $this->ffseal $ffseal;
  2436.         return $this;
  2437.     }
  2438.     public function getFfdate(): ?\DateTimeInterface
  2439.     {
  2440.         return $this->ffdate;
  2441.     }
  2442.     public function setFfdate(?\DateTimeInterface $ffdate): self
  2443.     {
  2444.         $this->ffdate $ffdate;
  2445.         return $this;
  2446.     }
  2447.     public function getFfcoment(): ?string
  2448.     {
  2449.         return $this->ffcoment;
  2450.     }
  2451.     public function setFfcoment(?string $ffcoment): self
  2452.     {
  2453.         $this->ffcoment $ffcoment;
  2454.         return $this;
  2455.     }
  2456.     public function getFbtab(): ?string
  2457.     {
  2458.         return $this->fbtab;
  2459.     }
  2460.     public function setFbtab(?string $fbtab): self
  2461.     {
  2462.         $this->fbtab $fbtab;
  2463.         return $this;
  2464.     }
  2465.     public function getFbvi(): ?string
  2466.     {
  2467.         return $this->fbvi;
  2468.     }
  2469.     public function setFbvi(?string $fbvi): self
  2470.     {
  2471.         $this->fbvi $fbvi;
  2472.         return $this;
  2473.     }
  2474.     public function getFbcoment(): ?string
  2475.     {
  2476.         return $this->fbcoment;
  2477.     }
  2478.     public function setFbcoment(?string $fbcoment): self
  2479.     {
  2480.         $this->fbcoment $fbcoment;
  2481.         return $this;
  2482.     }
  2483.     public function getFevi(): ?string
  2484.     {
  2485.         return $this->fevi;
  2486.     }
  2487.     public function setFevi(?string $fevi): self
  2488.     {
  2489.         $this->fevi $fevi;
  2490.         return $this;
  2491.     }
  2492.     public function getFecoment(): ?string
  2493.     {
  2494.         return $this->fecoment;
  2495.     }
  2496.     public function setFecoment(?string $fecoment): self
  2497.     {
  2498.         $this->fecoment $fecoment;
  2499.         return $this;
  2500.     }
  2501.     public function getFsvi(): ?string
  2502.     {
  2503.         return $this->fsvi;
  2504.     }
  2505.     public function setFsvi(?string $fsvi): self
  2506.     {
  2507.         $this->fsvi $fsvi;
  2508.         return $this;
  2509.     }
  2510.     public function getFscoment(): ?string
  2511.     {
  2512.         return $this->fscoment;
  2513.     }
  2514.     public function setFscoment(?string $fscoment): self
  2515.     {
  2516.         $this->fscoment $fscoment;
  2517.         return $this;
  2518.     }
  2519.     public function getFwtemp(): ?string
  2520.     {
  2521.         return $this->fwtemp;
  2522.     }
  2523.     public function setFwtemp(?string $fwtemp): self
  2524.     {
  2525.         $this->fwtemp $fwtemp;
  2526.         return $this;
  2527.     }
  2528.     public function getFwcoment(): ?string
  2529.     {
  2530.         return $this->fwcoment;
  2531.     }
  2532.     public function setFwcoment(?string $fwcoment): self
  2533.     {
  2534.         $this->fwcoment $fwcoment;
  2535.         return $this;
  2536.     }
  2537.     public function getFaplace(): ?string
  2538.     {
  2539.         return $this->faplace;
  2540.     }
  2541.     public function setFaplace(?string $faplace): self
  2542.     {
  2543.         $this->faplace $faplace;
  2544.         return $this;
  2545.     }
  2546.     public function getFadesign(): ?string
  2547.     {
  2548.         return $this->fadesign;
  2549.     }
  2550.     public function setFadesign(?string $fadesign): self
  2551.     {
  2552.         $this->fadesign $fadesign;
  2553.         return $this;
  2554.     }
  2555.     public function getFavi(): ?string
  2556.     {
  2557.         return $this->favi;
  2558.     }
  2559.     public function setFavi(?string $favi): self
  2560.     {
  2561.         $this->favi $favi;
  2562.         return $this;
  2563.     }
  2564.     public function getFacoment(): ?string
  2565.     {
  2566.         return $this->facoment;
  2567.     }
  2568.     public function setFacoment(?string $facoment): self
  2569.     {
  2570.         $this->facoment $facoment;
  2571.         return $this;
  2572.     }
  2573.     public function getFcloc(): ?string
  2574.     {
  2575.         return $this->fcloc;
  2576.     }
  2577.     public function setFcloc(?string $fcloc): self
  2578.     {
  2579.         $this->fcloc $fcloc;
  2580.         return $this;
  2581.     }
  2582.     public function getFcdesign(): ?string
  2583.     {
  2584.         return $this->fcdesign;
  2585.     }
  2586.     public function setFcdesign(?string $fcdesign): self
  2587.     {
  2588.         $this->fcdesign $fcdesign;
  2589.         return $this;
  2590.     }
  2591.     public function getFcvi(): ?string
  2592.     {
  2593.         return $this->fcvi;
  2594.     }
  2595.     public function setFcvi(?string $fcvi): self
  2596.     {
  2597.         $this->fcvi $fcvi;
  2598.         return $this;
  2599.     }
  2600.     public function getFccoment(): ?string
  2601.     {
  2602.         return $this->fccoment;
  2603.     }
  2604.     public function setFccoment(?string $fccoment): self
  2605.     {
  2606.         $this->fccoment $fccoment;
  2607.         return $this;
  2608.     }
  2609.     public function getSummary(): ?string
  2610.     {
  2611.         return $this->summary;
  2612.     }
  2613.     public function setSummary(?string $summary): self
  2614.     {
  2615.         $this->summary $summary;
  2616.         return $this;
  2617.     }
  2618.     public function getMiscpic1(): ?string
  2619.     {
  2620.         return $this->miscpic1;
  2621.     }
  2622.     public function setMiscpic1(?string $miscpic1): self
  2623.     {
  2624.         $this->miscpic1 $miscpic1;
  2625.         return $this;
  2626.     }
  2627.     public function getMiscpic2(): ?string
  2628.     {
  2629.         return $this->miscpic2;
  2630.     }
  2631.     public function setMiscpic2(?string $miscpic2): self
  2632.     {
  2633.         $this->miscpic2 $miscpic2;
  2634.         return $this;
  2635.     }
  2636.     public function getMiscpic3(): ?string
  2637.     {
  2638.         return $this->miscpic3;
  2639.     }
  2640.     public function setMiscpic3(?string $miscpic3): self
  2641.     {
  2642.         $this->miscpic3 $miscpic3;
  2643.         return $this;
  2644.     }
  2645.     public function getMiscpic4(): ?string
  2646.     {
  2647.         return $this->miscpic4;
  2648.     }
  2649.     public function setMiscpic4(?string $miscpic4): self
  2650.     {
  2651.         $this->miscpic4 $miscpic4;
  2652.         return $this;
  2653.     }
  2654.     public function getExteriorTotal(): ?string
  2655.     {
  2656.         return $this->exteriorTotal;
  2657.     }
  2658.     public function setExteriorTotal(?string $exteriorTotal): self
  2659.     {
  2660.         $this->exteriorTotal $exteriorTotal;
  2661.         return $this;
  2662.     }
  2663.     public function getBedroomScore(): ?string
  2664.     {
  2665.         return $this->bedroomScore;
  2666.     }
  2667.     public function setBedroomScore(?string $bedroomScore): self
  2668.     {
  2669.         $this->bedroomScore $bedroomScore;
  2670.         return $this;
  2671.     }
  2672.     public function getBathroomScore(): ?string
  2673.     {
  2674.         return $this->bathroomScore;
  2675.     }
  2676.     public function setBathroomScore(?string $bathroomScore): self
  2677.     {
  2678.         $this->bathroomScore $bathroomScore;
  2679.         return $this;
  2680.     }
  2681.     public function getKitchenScore(): ?string
  2682.     {
  2683.         return $this->kitchenScore;
  2684.     }
  2685.     public function setKitchenScore(?string $kitchenScore): self
  2686.     {
  2687.         $this->kitchenScore $kitchenScore;
  2688.         return $this;
  2689.     }
  2690.     public function getCleanlinessScore(): ?string
  2691.     {
  2692.         return $this->cleanlinessScore;
  2693.     }
  2694.     public function setCleanlinessScore(?string $cleanlinessScore): self
  2695.     {
  2696.         $this->cleanlinessScore $cleanlinessScore;
  2697.         return $this;
  2698.     }
  2699.     public function getManagementEfficiencyScore(): ?string
  2700.     {
  2701.         return $this->managementEfficiencyScore;
  2702.     }
  2703.     public function setManagementEfficiencyScore(?string $managementEfficiencyScore): self
  2704.     {
  2705.         $this->managementEfficiencyScore $managementEfficiencyScore;
  2706.         return $this;
  2707.     }
  2708.     public function getPublicAreaScore(): ?string
  2709.     {
  2710.         return $this->publicAreaScore;
  2711.     }
  2712.     public function setPublicAreaScore(?string $publicAreaScore): self
  2713.     {
  2714.         $this->publicAreaScore $publicAreaScore;
  2715.         return $this;
  2716.     }
  2717.     public function getTotalScore(): ?string
  2718.     {
  2719.         return $this->totalScore;
  2720.     }
  2721.     public function setTotalScore(?string $totalScore): self
  2722.     {
  2723.         $this->totalScore $totalScore;
  2724.         return $this;
  2725.     }
  2726.     public function getStars(): ?string
  2727.     {
  2728.         return $this->stars;
  2729.     }
  2730.     public function setStars(?string $stars): self
  2731.     {
  2732.         $this->stars $stars;
  2733.         return $this;
  2734.     }
  2735.     /**
  2736.      * @return Collection|Bedroom[]
  2737.      */
  2738.     public function getBedroom(): Collection
  2739.     {
  2740.         return $this->bedroom;
  2741.     }
  2742.     public function addBedroom(Bedroom $bedroom): self
  2743.     {
  2744.         if (!$this->bedroom->contains($bedroom)) {
  2745.             $this->bedroom[] = $bedroom;
  2746.             $bedroom->setForms($this);
  2747.         }
  2748.         return $this;
  2749.     }
  2750.     public function removeBedroom(Bedroom $bedroom): self
  2751.     {
  2752.         if ($this->bedroom->contains($bedroom)) {
  2753.             $this->bedroom->removeElement($bedroom);
  2754.             // set the owning side to null (unless already changed)
  2755.             if ($bedroom->getForms() === $this) {
  2756.                 $bedroom->setForms(null);
  2757.             }
  2758.         }
  2759.         return $this;
  2760.     }
  2761.     /**
  2762.      * @return Collection|Bathroom[]
  2763.      */
  2764.     public function getBathroom(): Collection
  2765.     {
  2766.         return $this->bathroom;
  2767.     }
  2768.     public function addBathroom(Bathroom $bathroom): self
  2769.     {
  2770.         if (!$this->bathroom->contains($bathroom)) {
  2771.             $this->bathroom[] = $bathroom;
  2772.             $bathroom->setForms($this);
  2773.         }
  2774.         return $this;
  2775.     }
  2776.     public function removeBathroom(Bathroom $bathroom): self
  2777.     {
  2778.         if ($this->bathroom->contains($bathroom)) {
  2779.             $this->bathroom->removeElement($bathroom);
  2780.             // set the owning side to null (unless already changed)
  2781.             if ($bathroom->getForms() === $this) {
  2782.                 $bathroom->setForms(null);
  2783.             }
  2784.         }
  2785.         return $this;
  2786.     }
  2787.     public function getFfeachfloor(): ?string
  2788.     {
  2789.         return $this->ffeachfloor;
  2790.     }
  2791.     public function setFfeachfloor(?string $ffeachfloor): self
  2792.     {
  2793.         $this->ffeachfloor $ffeachfloor;
  2794.         return $this;
  2795.     }
  2796.     public function getChimney(): ?string
  2797.     {
  2798.         return $this->chimney;
  2799.     }
  2800.     public function setChimney(?string $chimney): self
  2801.     {
  2802.         $this->chimney $chimney;
  2803.         return $this;
  2804.     }
  2805.     public function getChimneydate(): ?\DateTimeInterface
  2806.     {
  2807.         return $this->chimneydate;
  2808.     }
  2809.     public function setChimneydate(?\DateTimeInterface $chimneydate): self
  2810.     {
  2811.         $this->chimneydate $chimneydate;
  2812.         return $this;
  2813.     }
  2814.     public function getIsDeleted(): ?bool
  2815.     {
  2816.         return $this->isDeleted;
  2817.     }
  2818.     public function setIsDeleted(bool $isDeleted): self
  2819.     {
  2820.         $this->isDeleted $isDeleted;
  2821.         return $this;
  2822.     }
  2823.     public function getPtv(): ?string
  2824.     {
  2825.         return $this->ptv;
  2826.     }
  2827.     public function setPtv(?string $ptv): self
  2828.     {
  2829.         $this->ptv $ptv;
  2830.         return $this;
  2831.     }
  2832. }