src/MDS/AvexpressBundle/Entity/AveProductFile.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\MDS\AvexpressBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * AveProductFile
  6.  *
  7.  * @ORM\Table(name="ave_product_file")
  8.  * @ORM\Entity(repositoryClass="App\MDS\AvexpressBundle\Repository\AveProductFileRepository")
  9.  */
  10. class AveProductFile
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string|null
  22.      *
  23.      * @ORM\Column(name="productName", type="text", nullable=true)
  24.      */
  25.     private $productName;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="productId", type="integer")
  30.      */
  31.     private $productId;
  32.     /**
  33.      * @var \DateTime
  34.      *
  35.      * @ORM\Column(name="dateStart", type="datetime", nullable=true)
  36.      */
  37.     private $dateStart;
  38.     /**
  39.      * @var \DateTime
  40.      *
  41.      * @ORM\Column(name="dateEnd", type="datetime", nullable=true)
  42.      */
  43.     private $dateEnd;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="servicePrice", type="string", length=255)
  48.      */
  49.     private $servicePrice;
  50.     /**
  51.      * @var int
  52.      *
  53.      * @ORM\Column(name="fileId", type="integer")
  54.      *
  55.      */
  56.     private $fileId;
  57.     /**
  58.      * @var int
  59.      *
  60.      * @ORM\Column(name="pax", type="integer", nullable=true)
  61.      */
  62.     private $pax;
  63.     /**
  64.      * @var string
  65.      *
  66.      * @ORM\Column(name="type", type="string", length=255, nullable=true)
  67.      */
  68.     private $type;
  69.     /**
  70.      * @var string
  71.      *
  72.      * @ORM\Column(name="hourStart", type="string", length=255, nullable=true)
  73.      */
  74.     private $hourStart;
  75.     /**
  76.      * @var string
  77.      *
  78.      * @ORM\Column(name="minStart", type="string", length=255, nullable=true)
  79.      */
  80.     private $minStart;
  81.     /**
  82.      * @var string
  83.      *
  84.      * @ORM\Column(name="hourEnd", type="string", length=255, nullable=true)
  85.      */
  86.     private $hourEnd;
  87.     /**
  88.      * @var string
  89.      *
  90.      * @ORM\Column(name="minEnd", type="string", length=255, nullable=true)
  91.      */
  92.     private $minEnd;
  93.     /**
  94.      * @var string
  95.      *
  96.      * @ORM\Column(name="description", type="text", nullable=true)
  97.      */
  98.     private $description;
  99.     /**
  100.      * @var \DateTime
  101.      *
  102.      * @ORM\Column(name="createdAt", type="datetime")
  103.      */
  104.     private $createdAt;
  105.     /**
  106.      * @var string
  107.      *
  108.      * @ORM\Column(name="createdId", type="string", length=255)
  109.      */
  110.     private $createdId;
  111.     /**
  112.      * @var \DateTime
  113.      *
  114.      * @ORM\Column(name="updatedAt", type="datetime")
  115.      */
  116.     private $updatedAt;
  117.     /**
  118.      * @var string
  119.      *
  120.      * @ORM\Column(name="updatedId", type="string", length=255)
  121.      */
  122.     private $updatedId;
  123.     /**
  124.      * @var string
  125.      *
  126.      * @ORM\Column(name="supplierExt", type="string", nullable=true)
  127.      */
  128.     private $supplierExt;
  129.     /**
  130.      * @var int
  131.      *
  132.      * @ORM\Column(name="supplierExtId", type="integer", nullable=true)
  133.      */
  134.     private $supplierExtId;
  135.     ////////////// REPLICACION DE CAMPOS DE SERVICIOS DE EVENTOS
  136.     /**
  137.      * @var int
  138.      *
  139.      * @ORM\Column(name="service_id_proposal", type="integer", nullable=true)
  140.      */
  141.     private $serviceIdProposal;
  142.     /**
  143.      * @var int
  144.      *
  145.      * @ORM\Column(name="service_id_father", type="integer", nullable=true)
  146.      */
  147.     private $serviceIdFather '0';
  148.     /**
  149.      * @var int
  150.      *
  151.      * @ORM\Column(name="control_id", type="integer", nullable=true)
  152.      */
  153.     private $controlId;
  154.     /**
  155.      * @var int
  156.      *
  157.      * @ORM\Column(name="proposal_id", type="integer", nullable=true)
  158.      */
  159.     private $proposalId;
  160.     /**
  161.      * @var int
  162.      *
  163.      * @ORM\Column(name="destination_id", type="integer", nullable=true)
  164.      */
  165.     private $destinationId;
  166.     /**
  167.      * @var int
  168.      *
  169.      * @ORM\Column(name="idea_id", type="integer", nullable=true)
  170.      */
  171.     private $ideaId;
  172.     /**
  173.      * @var int
  174.      *
  175.      * @ORM\Column(name="activity_id", type="integer", nullable=true)
  176.      */
  177.     private $activityId;
  178.     /**
  179.      * @var int
  180.      *
  181.      * @ORM\Column(name="supplier_id", type="integer", nullable=true)
  182.      */
  183.     private $supplierId;
  184.     /**
  185.      * @var int
  186.      *
  187.      * @ORM\Column(name="assistant_id", type="integer", nullable=true)
  188.      */
  189.     private $assistantId;
  190.     /**
  191.      * @var int
  192.      *
  193.      * @ORM\Column(name="service_id", type="integer", nullable=true)
  194.      */
  195.     private $serviceId;
  196.     /**
  197.      * @var int
  198.      *
  199.      * @ORM\Column(name="service_cat_id", type="integer", nullable=true)
  200.      */
  201.     private $serviceCatId;
  202.     /**
  203.      * @var string
  204.      *
  205.      * @ORM\Column(name="service_cat_name", type="string", length=255, nullable=true)
  206.      */
  207.     private $serviceCatName;
  208.     /**
  209.      * @var string
  210.      *
  211.      * @ORM\Column(name="name", type="string", length=255, nullable=true)
  212.      */
  213.     private $name;
  214.     /**
  215.      * @var string
  216.      *
  217.      * @ORM\Column(name="price", type="string", length=255, nullable=true)
  218.      */
  219.     private $price;
  220.     /**
  221.      * @var string
  222.      *
  223.      * @ORM\Column(name="currency", type="string", length=255, nullable=true)
  224.      */
  225.     private $currency;
  226.     /**
  227.      * @var string
  228.      *
  229.      * @ORM\Column(name="units", type="string", length=255, nullable=true)
  230.      */
  231.     private $units '1';
  232.     /**
  233.      * @var string
  234.      *
  235.      * @ORM\Column(name="op_commission", type="string", length=255, nullable=true)
  236.      */
  237.     private $opCommission '0';
  238.     /**
  239.      * @var string
  240.      *
  241.      * @ORM\Column(name="commission", type="string", length=255, nullable=true)
  242.      */
  243.     private $commission;
  244.     /**
  245.      * @var string
  246.      *
  247.      * @ORM\Column(name="op_over", type="string", length=255, nullable=true)
  248.      */
  249.     private $opOver '0';
  250.     /**
  251.      * @var string
  252.      *
  253.      * @ORM\Column(name="price_over", type="string", length=255, nullable=true)
  254.      */
  255.     private $over;
  256.     /**
  257.      * @var string
  258.      *
  259.      * @ORM\Column(name="op_iva", type="string", length=255, nullable=true)
  260.      */
  261.     private $opIva '0';
  262.     /**
  263.      * @var string
  264.      *
  265.      * @ORM\Column(name="iva", type="string", length=255, nullable=true)
  266.      */
  267.     private $iva;
  268.     /**
  269.      * @var string
  270.      *
  271.      * @ORM\Column(name="hour", type="string", length=255, nullable=true)
  272.      */
  273.     private $hour;
  274.     /**
  275.      * @var \DateTime
  276.      *
  277.      * @ORM\Column(name="date_in_at", type="datetime", nullable=true)
  278.      */
  279.     private $dateInAt;
  280.     /**
  281.      * @var \DateTime
  282.      *
  283.      * @ORM\Column(name="date_out_at", type="datetime", nullable=true)
  284.      */
  285.     private $dateOutAt;
  286.     /**
  287.      * @var string
  288.      *
  289.      * @ORM\Column(name="contcolor", type="string", length=255, nullable=true)
  290.      */
  291.     private $contcolor;
  292.     /**
  293.      * @var string
  294.      *
  295.      * @ORM\Column(name="`rank`", type="string", length=255, nullable=true)
  296.      */
  297.     private $rank;
  298.     /**
  299.      * @var string
  300.      *
  301.      * @ORM\Column(name="renovate", type="string", length=2, nullable=true)
  302.      */
  303.     private $renovate;
  304.     /**
  305.      * @ORM\Column(name="pay", type="boolean", options={"default" = 0}, nullable=true)
  306.      */
  307.     private $pay "0";
  308.     /**
  309.      * @var string
  310.      *
  311.      * @ORM\Column(name="days", type="string", length=255, nullable=true)
  312.      */
  313.     private $days '1';
  314.     ////////////// REPLICACION DE CAMPOS DE SERVICIOS DE EVENTOS
  315.     /**
  316.      * @var string
  317.      *
  318.      * @ORM\Column(name="sub_total_price", type="string", length=255, nullable=true)
  319.      */
  320.     private $subTotalPrice;
  321.     ////////////// CAMPO DE ID DEL SERVICIO ASOCIADO AL PRODUCTO EN EVENTOS
  322.     /**
  323.      * @var int
  324.      *
  325.      * @ORM\Column(name="origin_id", type="integer", nullable=true)
  326.      */
  327.     private $originId;
  328.     ////////////// RANKAV EL NUMERO PARA LA ORGANIZACION
  329.     /**
  330.      * @var int
  331.      *
  332.      * @ORM\Column(name="rank_av", type="integer", length=255, nullable=true)
  333.      */
  334.     private $rankAv;
  335.     ////////////// LOCATION ES EL NOMBRE DE LA SALA O ESPACIO DONDE SE VENDERA EL PRODUCTO
  336.     /**
  337.      * @var string
  338.      *
  339.      * @ORM\Column(name="location", type="string", length=255, nullable=true)
  340.      */
  341.     private $location;
  342.     /**
  343.      * @var int
  344.      * ID de ReservationLoungeDetails
  345.      *
  346.      * @ORM\Column(name="idGpLounge", type="integer", nullable=true)
  347.      */
  348.     private $idGpLounge;
  349.     /**
  350.      * Get id
  351.      *
  352.      * @return int
  353.      */
  354.     public function getId()
  355.     {
  356.         return $this->id;
  357.     }
  358.     /**
  359.      * Set productName
  360.      *
  361.      * @param string $productName
  362.      *
  363.      * @return AveProductFile
  364.      */
  365.     public function setProductName($productName)
  366.     {
  367.         $this->productName $productName;
  368.         return $this;
  369.     }
  370.     /**
  371.      * Get productName
  372.      *
  373.      * @return string
  374.      */
  375.     public function getProductName()
  376.     {
  377.         return $this->productName;
  378.     }
  379.     /**
  380.      * Set productId
  381.      *
  382.      * @param integer $productId
  383.      *
  384.      * @return AveProductFile
  385.      */
  386.     public function setProductId($productId)
  387.     {
  388.         $this->productId $productId;
  389.         return $this;
  390.     }
  391.     /**
  392.      * Get productId
  393.      *
  394.      * @return integer
  395.      */
  396.     public function getProductId()
  397.     {
  398.         return $this->productId;
  399.     }
  400.     /**
  401.      * Set dateStart
  402.      *
  403.      * @param \DateTime $dateStart
  404.      *
  405.      * @return AveProductFile
  406.      */
  407.     public function setDateStart($dateStart)
  408.     {
  409.         $this->dateStart $dateStart;
  410.         return $this;
  411.     }
  412.     /**
  413.      * Get dateStart
  414.      *
  415.      * @return \DateTime
  416.      */
  417.     public function getDateStart()
  418.     {
  419.         return $this->dateStart;
  420.     }
  421.     /**
  422.      * Set dateEnd
  423.      *
  424.      * @param \DateTime $dateEnd
  425.      *
  426.      * @return AveProductFile
  427.      */
  428.     public function setDateEnd($dateEnd)
  429.     {
  430.         $this->dateEnd $dateEnd;
  431.         return $this;
  432.     }
  433.     /**
  434.      * Get dateEnd
  435.      *
  436.      * @return \DateTime
  437.      */
  438.     public function getDateEnd()
  439.     {
  440.         return $this->dateEnd;
  441.     }
  442.     /**
  443.      * Set fileId
  444.      *
  445.      * @param integer $fileId
  446.      *
  447.      * @return AveProductFile
  448.      */
  449.     public function setFileId($fileId)
  450.     {
  451.         $this->fileId $fileId;
  452.         return $this;
  453.     }
  454.     /**
  455.      * Get fileId
  456.      *
  457.      * @return integer
  458.      */
  459.     public function getFileId()
  460.     {
  461.         return $this->fileId;
  462.     }
  463.     /**
  464.      * Set pax
  465.      *
  466.      * @param integer $pax
  467.      *
  468.      * @return AveProductFile
  469.      */
  470.     public function setPax($pax)
  471.     {
  472.         $this->pax $pax;
  473.         return $this;
  474.     }
  475.     /**
  476.      * Get pax
  477.      *
  478.      * @return integer
  479.      */
  480.     public function getPax()
  481.     {
  482.         return $this->pax;
  483.     }
  484.     /**
  485.      * Set type
  486.      *
  487.      * @param string $type
  488.      *
  489.      * @return AveProductFile
  490.      */
  491.     public function setType($type)
  492.     {
  493.         $this->type $type;
  494.         return $this;
  495.     }
  496.     /**
  497.      * Get type
  498.      *
  499.      * @return string
  500.      */
  501.     public function getType()
  502.     {
  503.         return $this->type;
  504.     }
  505.     /**
  506.      * Set hourStart
  507.      *
  508.      * @param string $hourStart
  509.      *
  510.      * @return AveProductFile
  511.      */
  512.     public function setHourStart($hourStart)
  513.     {
  514.         $this->hourStart $hourStart;
  515.         return $this;
  516.     }
  517.     /**
  518.      * Get hourStart
  519.      *
  520.      * @return string
  521.      */
  522.     public function getHourStart()
  523.     {
  524.         return $this->hourStart;
  525.     }
  526.     /**
  527.      * Set minStart
  528.      *
  529.      * @param string $minStart
  530.      *
  531.      * @return AveProductFile
  532.      */
  533.     public function setMinStart($minStart)
  534.     {
  535.         $this->minStart $minStart;
  536.         return $this;
  537.     }
  538.     /**
  539.      * Get minStart
  540.      *
  541.      * @return string
  542.      */
  543.     public function getMinStart()
  544.     {
  545.         return $this->minStart;
  546.     }
  547.     /**
  548.      * Set hourEnd
  549.      *
  550.      * @param string $hourEnd
  551.      *
  552.      * @return AveProductFile
  553.      */
  554.     public function setHourEnd($hourEnd)
  555.     {
  556.         $this->hourEnd $hourEnd;
  557.         return $this;
  558.     }
  559.     /**
  560.      * Get hourEnd
  561.      *
  562.      * @return string
  563.      */
  564.     public function getHourEnd()
  565.     {
  566.         return $this->hourEnd;
  567.     }
  568.     /**
  569.      * Set minEnd
  570.      *
  571.      * @param string $minEnd
  572.      *
  573.      * @return AveProductFile
  574.      */
  575.     public function setMinEnd($minEnd)
  576.     {
  577.         $this->minEnd $minEnd;
  578.         return $this;
  579.     }
  580.     /**
  581.      * Get minEnd
  582.      *
  583.      * @return string
  584.      */
  585.     public function getMinEnd()
  586.     {
  587.         return $this->minEnd;
  588.     }
  589.     /**
  590.      * Set description
  591.      *
  592.      * @param string $description
  593.      *
  594.      * @return AveProductFile
  595.      */
  596.     public function setDescription($description)
  597.     {
  598.         $this->description $description;
  599.         return $this;
  600.     }
  601.     /**
  602.      * Get description
  603.      *
  604.      * @return string
  605.      */
  606.     public function getDescription()
  607.     {
  608.         return $this->description;
  609.     }
  610.     /**
  611.      * Set createdAt
  612.      *
  613.      * @param \DateTime $createdAt
  614.      *
  615.      * @return AveProductFile
  616.      */
  617.     public function setCreatedAt($createdAt)
  618.     {
  619.         $this->createdAt $createdAt;
  620.         return $this;
  621.     }
  622.     /**
  623.      * Get createdAt
  624.      *
  625.      * @return \DateTime
  626.      */
  627.     public function getCreatedAt()
  628.     {
  629.         return $this->createdAt;
  630.     }
  631.     /**
  632.      * Set createdId
  633.      *
  634.      * @param string $createdId
  635.      *
  636.      * @return AveProductFile
  637.      */
  638.     public function setCreatedId($createdId)
  639.     {
  640.         $this->createdId $createdId;
  641.         return $this;
  642.     }
  643.     /**
  644.      * Get createdId
  645.      *
  646.      * @return string
  647.      */
  648.     public function getCreatedId()
  649.     {
  650.         return $this->createdId;
  651.     }
  652.     /**
  653.      * Set updatedAt
  654.      *
  655.      * @param \DateTime $updatedAt
  656.      *
  657.      * @return AveProductFile
  658.      */
  659.     public function setUpdatedAt($updatedAt)
  660.     {
  661.         $this->updatedAt $updatedAt;
  662.         return $this;
  663.     }
  664.     /**
  665.      * Get updatedAt
  666.      *
  667.      * @return \DateTime
  668.      */
  669.     public function getUpdatedAt()
  670.     {
  671.         return $this->updatedAt;
  672.     }
  673.     /**
  674.      * Set updatedId
  675.      *
  676.      * @param string $updatedId
  677.      *
  678.      * @return AveProductFile
  679.      */
  680.     public function setUpdatedId($updatedId)
  681.     {
  682.         $this->updatedId $updatedId;
  683.         return $this;
  684.     }
  685.     /**
  686.      * Get updatedId
  687.      *
  688.      * @return string
  689.      */
  690.     public function getUpdatedId()
  691.     {
  692.         return $this->updatedId;
  693.     }
  694.     /**
  695.      * Set serviceIdProposal
  696.      *
  697.      * @param integer $serviceIdProposal
  698.      *
  699.      * @return AveProductFile
  700.      */
  701.     public function setServiceIdProposal($serviceIdProposal)
  702.     {
  703.         $this->serviceIdProposal $serviceIdProposal;
  704.         return $this;
  705.     }
  706.     /**
  707.      * Get serviceIdProposal
  708.      *
  709.      * @return integer
  710.      */
  711.     public function getServiceIdProposal()
  712.     {
  713.         return $this->serviceIdProposal;
  714.     }
  715.     /**
  716.      * Set serviceIdFather
  717.      *
  718.      * @param integer $serviceIdFather
  719.      *
  720.      * @return AveProductFile
  721.      */
  722.     public function setServiceIdFather($serviceIdFather)
  723.     {
  724.         $this->serviceIdFather $serviceIdFather;
  725.         return $this;
  726.     }
  727.     /**
  728.      * Get serviceIdFather
  729.      *
  730.      * @return integer
  731.      */
  732.     public function getServiceIdFather()
  733.     {
  734.         return $this->serviceIdFather;
  735.     }
  736.     /**
  737.      * Set controlId
  738.      *
  739.      * @param integer $controlId
  740.      *
  741.      * @return AveProductFile
  742.      */
  743.     public function setControlId($controlId)
  744.     {
  745.         $this->controlId $controlId;
  746.         return $this;
  747.     }
  748.     /**
  749.      * Get controlId
  750.      *
  751.      * @return integer
  752.      */
  753.     public function getControlId()
  754.     {
  755.         return $this->controlId;
  756.     }
  757.     /**
  758.      * Set proposalId
  759.      *
  760.      * @param integer $proposalId
  761.      *
  762.      * @return AveProductFile
  763.      */
  764.     public function setProposalId($proposalId)
  765.     {
  766.         $this->proposalId $proposalId;
  767.         return $this;
  768.     }
  769.     /**
  770.      * Get proposalId
  771.      *
  772.      * @return integer
  773.      */
  774.     public function getProposalId()
  775.     {
  776.         return $this->proposalId;
  777.     }
  778.     /**
  779.      * Set destinationId
  780.      *
  781.      * @param integer $destinationId
  782.      *
  783.      * @return AveProductFile
  784.      */
  785.     public function setDestinationId($destinationId)
  786.     {
  787.         $this->destinationId $destinationId;
  788.         return $this;
  789.     }
  790.     /**
  791.      * Get destinationId
  792.      *
  793.      * @return integer
  794.      */
  795.     public function getDestinationId()
  796.     {
  797.         return $this->destinationId;
  798.     }
  799.     /**
  800.      * Set ideaId
  801.      *
  802.      * @param integer $ideaId
  803.      *
  804.      * @return AveProductFile
  805.      */
  806.     public function setIdeaId($ideaId)
  807.     {
  808.         $this->ideaId $ideaId;
  809.         return $this;
  810.     }
  811.     /**
  812.      * Get ideaId
  813.      *
  814.      * @return integer
  815.      */
  816.     public function getIdeaId()
  817.     {
  818.         return $this->ideaId;
  819.     }
  820.     /**
  821.      * Set activityId
  822.      *
  823.      * @param integer $activityId
  824.      *
  825.      * @return AveProductFile
  826.      */
  827.     public function setActivityId($activityId)
  828.     {
  829.         $this->activityId $activityId;
  830.         return $this;
  831.     }
  832.     /**
  833.      * Get activityId
  834.      *
  835.      * @return integer
  836.      */
  837.     public function getActivityId()
  838.     {
  839.         return $this->activityId;
  840.     }
  841.     /**
  842.      * Set supplierId
  843.      *
  844.      * @param integer $supplierId
  845.      *
  846.      * @return AveProductFile
  847.      */
  848.     public function setSupplierId($supplierId)
  849.     {
  850.         $this->supplierId $supplierId;
  851.         return $this;
  852.     }
  853.     /**
  854.      * Get supplierId
  855.      *
  856.      * @return integer
  857.      */
  858.     public function getSupplierId()
  859.     {
  860.         return $this->supplierId;
  861.     }
  862.     /**
  863.      * Set assistantId
  864.      *
  865.      * @param integer $assistantId
  866.      *
  867.      * @return AveProductFile
  868.      */
  869.     public function setAssistantId($assistantId)
  870.     {
  871.         $this->assistantId $assistantId;
  872.         return $this;
  873.     }
  874.     /**
  875.      * Get assistantId
  876.      *
  877.      * @return integer
  878.      */
  879.     public function getAssistantId()
  880.     {
  881.         return $this->assistantId;
  882.     }
  883.     /**
  884.      * Set serviceId
  885.      *
  886.      * @param integer $serviceId
  887.      *
  888.      * @return AveProductFile
  889.      */
  890.     public function setServiceId($serviceId)
  891.     {
  892.         $this->serviceId $serviceId;
  893.         return $this;
  894.     }
  895.     /**
  896.      * Get serviceId
  897.      *
  898.      * @return integer
  899.      */
  900.     public function getServiceId()
  901.     {
  902.         return $this->serviceId;
  903.     }
  904.     /**
  905.      * Set serviceCatId
  906.      *
  907.      * @param integer $serviceCatId
  908.      *
  909.      * @return AveProductFile
  910.      */
  911.     public function setServiceCatId($serviceCatId)
  912.     {
  913.         $this->serviceCatId $serviceCatId;
  914.         return $this;
  915.     }
  916.     /**
  917.      * Get serviceCatId
  918.      *
  919.      * @return integer
  920.      */
  921.     public function getServiceCatId()
  922.     {
  923.         return $this->serviceCatId;
  924.     }
  925.     /**
  926.      * Set serviceCatName
  927.      *
  928.      * @param string $serviceCatName
  929.      *
  930.      * @return AveProductFile
  931.      */
  932.     public function setServiceCatName($serviceCatName)
  933.     {
  934.         $this->serviceCatName $serviceCatName;
  935.         return $this;
  936.     }
  937.     /**
  938.      * Get serviceCatName
  939.      *
  940.      * @return string
  941.      */
  942.     public function getServiceCatName()
  943.     {
  944.         return $this->serviceCatName;
  945.     }
  946.     /**
  947.      * Set name
  948.      *
  949.      * @param string $name
  950.      *
  951.      * @return AveProductFile
  952.      */
  953.     public function setName($name)
  954.     {
  955.         $this->name $name;
  956.         return $this;
  957.     }
  958.     /**
  959.      * Get name
  960.      *
  961.      * @return string
  962.      */
  963.     public function getName()
  964.     {
  965.         return $this->name;
  966.     }
  967.     /**
  968.      * Set price
  969.      *
  970.      * @param string $price
  971.      *
  972.      * @return AveProductFile
  973.      */
  974.     public function setPrice($price)
  975.     {
  976.         $this->price $price;
  977.         return $this;
  978.     }
  979.     /**
  980.      * Get price
  981.      *
  982.      * @return string
  983.      */
  984.     public function getPrice()
  985.     {
  986.         return $this->price;
  987.     }
  988.     /**
  989.      * Set currency
  990.      *
  991.      * @param string $currency
  992.      *
  993.      * @return AveProductFile
  994.      */
  995.     public function setCurrency($currency)
  996.     {
  997.         $this->currency $currency;
  998.         return $this;
  999.     }
  1000.     /**
  1001.      * Get currency
  1002.      *
  1003.      * @return string
  1004.      */
  1005.     public function getCurrency()
  1006.     {
  1007.         return $this->currency;
  1008.     }
  1009.     /**
  1010.      * Set units
  1011.      *
  1012.      * @param string $units
  1013.      *
  1014.      * @return AveProductFile
  1015.      */
  1016.     public function setUnits($units)
  1017.     {
  1018.         $this->units $units;
  1019.         return $this;
  1020.     }
  1021.     /**
  1022.      * Get units
  1023.      *
  1024.      * @return string
  1025.      */
  1026.     public function getUnits()
  1027.     {
  1028.         return $this->units;
  1029.     }
  1030.     /**
  1031.      * Set opCommission
  1032.      *
  1033.      * @param string $opCommission
  1034.      *
  1035.      * @return AveProductFile
  1036.      */
  1037.     public function setOpCommission($opCommission)
  1038.     {
  1039.         $this->opCommission $opCommission;
  1040.         return $this;
  1041.     }
  1042.     /**
  1043.      * Get opCommission
  1044.      *
  1045.      * @return string
  1046.      */
  1047.     public function getOpCommission()
  1048.     {
  1049.         return $this->opCommission;
  1050.     }
  1051.     /**
  1052.      * Set commission
  1053.      *
  1054.      * @param string $commission
  1055.      *
  1056.      * @return AveProductFile
  1057.      */
  1058.     public function setCommission($commission)
  1059.     {
  1060.         $this->commission $commission;
  1061.         return $this;
  1062.     }
  1063.     /**
  1064.      * Get commission
  1065.      *
  1066.      * @return string
  1067.      */
  1068.     public function getCommission()
  1069.     {
  1070.         return $this->commission;
  1071.     }
  1072.     /**
  1073.      * Set opOver
  1074.      *
  1075.      * @param string $opOver
  1076.      *
  1077.      * @return AveProductFile
  1078.      */
  1079.     public function setOpOver($opOver)
  1080.     {
  1081.         $this->opOver $opOver;
  1082.         return $this;
  1083.     }
  1084.     /**
  1085.      * Get opOver
  1086.      *
  1087.      * @return string
  1088.      */
  1089.     public function getOpOver()
  1090.     {
  1091.         return $this->opOver;
  1092.     }
  1093.     /**
  1094.      * Set over
  1095.      *
  1096.      * @param string $over
  1097.      *
  1098.      * @return AveProductFile
  1099.      */
  1100.     public function setOver($over)
  1101.     {
  1102.         $this->over $over;
  1103.         return $this;
  1104.     }
  1105.     /**
  1106.      * Get over
  1107.      *
  1108.      * @return string
  1109.      */
  1110.     public function getOver()
  1111.     {
  1112.         return $this->over;
  1113.     }
  1114.     /**
  1115.      * Set opIva
  1116.      *
  1117.      * @param string $opIva
  1118.      *
  1119.      * @return AveProductFile
  1120.      */
  1121.     public function setOpIva($opIva)
  1122.     {
  1123.         $this->opIva $opIva;
  1124.         return $this;
  1125.     }
  1126.     /**
  1127.      * Get opIva
  1128.      *
  1129.      * @return string
  1130.      */
  1131.     public function getOpIva()
  1132.     {
  1133.         return $this->opIva;
  1134.     }
  1135.     /**
  1136.      * Set iva
  1137.      *
  1138.      * @param string $iva
  1139.      *
  1140.      * @return AveProductFile
  1141.      */
  1142.     public function setIva($iva)
  1143.     {
  1144.         $this->iva $iva;
  1145.         return $this;
  1146.     }
  1147.     /**
  1148.      * Get iva
  1149.      *
  1150.      * @return string
  1151.      */
  1152.     public function getIva()
  1153.     {
  1154.         return $this->iva;
  1155.     }
  1156.     /**
  1157.      * Set hour
  1158.      *
  1159.      * @param string $hour
  1160.      *
  1161.      * @return AveProductFile
  1162.      */
  1163.     public function setHour($hour)
  1164.     {
  1165.         $this->hour $hour;
  1166.         return $this;
  1167.     }
  1168.     /**
  1169.      * Get hour
  1170.      *
  1171.      * @return string
  1172.      */
  1173.     public function getHour()
  1174.     {
  1175.         return $this->hour;
  1176.     }
  1177.     /**
  1178.      * Set dateInAt
  1179.      *
  1180.      * @param \DateTime $dateInAt
  1181.      *
  1182.      * @return AveProductFile
  1183.      */
  1184.     public function setDateInAt($dateInAt)
  1185.     {
  1186.         $this->dateInAt $dateInAt;
  1187.         return $this;
  1188.     }
  1189.     /**
  1190.      * Get dateInAt
  1191.      *
  1192.      * @return \DateTime
  1193.      */
  1194.     public function getDateInAt()
  1195.     {
  1196.         return $this->dateInAt;
  1197.     }
  1198.     /**
  1199.      * Set dateOutAt
  1200.      *
  1201.      * @param \DateTime $dateOutAt
  1202.      *
  1203.      * @return AveProductFile
  1204.      */
  1205.     public function setDateOutAt($dateOutAt)
  1206.     {
  1207.         $this->dateOutAt $dateOutAt;
  1208.         return $this;
  1209.     }
  1210.     /**
  1211.      * Get dateOutAt
  1212.      *
  1213.      * @return \DateTime
  1214.      */
  1215.     public function getDateOutAt()
  1216.     {
  1217.         return $this->dateOutAt;
  1218.     }
  1219.     /**
  1220.      * Set contcolor
  1221.      *
  1222.      * @param string $contcolor
  1223.      *
  1224.      * @return AveProductFile
  1225.      */
  1226.     public function setContcolor($contcolor)
  1227.     {
  1228.         $this->contcolor $contcolor;
  1229.         return $this;
  1230.     }
  1231.     /**
  1232.      * Get contcolor
  1233.      *
  1234.      * @return string
  1235.      */
  1236.     public function getContcolor()
  1237.     {
  1238.         return $this->contcolor;
  1239.     }
  1240.     /**
  1241.      * Set rank
  1242.      *
  1243.      * @param string $rank
  1244.      *
  1245.      * @return AveProductFile
  1246.      */
  1247.     public function setRank($rank)
  1248.     {
  1249.         $this->rank $rank;
  1250.         return $this;
  1251.     }
  1252.     /**
  1253.      * Get rank
  1254.      *
  1255.      * @return string
  1256.      */
  1257.     public function getRank()
  1258.     {
  1259.         return $this->rank;
  1260.     }
  1261.     /**
  1262.      * Set renovate
  1263.      *
  1264.      * @param string $renovate
  1265.      *
  1266.      * @return AveProductFile
  1267.      */
  1268.     public function setRenovate($renovate)
  1269.     {
  1270.         $this->renovate $renovate;
  1271.         return $this;
  1272.     }
  1273.     /**
  1274.      * Get renovate
  1275.      *
  1276.      * @return string
  1277.      */
  1278.     public function getRenovate()
  1279.     {
  1280.         return $this->renovate;
  1281.     }
  1282.     /**
  1283.      * Set pay
  1284.      *
  1285.      * @param boolean $pay
  1286.      *
  1287.      * @return AveProductFile
  1288.      */
  1289.     public function setPay($pay)
  1290.     {
  1291.         $this->pay $pay;
  1292.         return $this;
  1293.     }
  1294.     /**
  1295.      * Get pay
  1296.      *
  1297.      * @return boolean
  1298.      */
  1299.     public function getPay()
  1300.     {
  1301.         return $this->pay;
  1302.     }
  1303.     /**
  1304.      * Set originId
  1305.      *
  1306.      * @param integer $originId
  1307.      *
  1308.      * @return AveProductFile
  1309.      */
  1310.     public function setOriginId($originId)
  1311.     {
  1312.         $this->originId $originId;
  1313.         return $this;
  1314.     }
  1315.     /**
  1316.      * Get originId
  1317.      *
  1318.      * @return integer
  1319.      */
  1320.     public function getOriginId()
  1321.     {
  1322.         return $this->originId;
  1323.     }
  1324.     /**
  1325.      * Set servicePrice
  1326.      *
  1327.      * @param string $servicePrice
  1328.      *
  1329.      * @return AveProductFile
  1330.      */
  1331.     public function setServicePrice($servicePrice)
  1332.     {
  1333.         $this->servicePrice $servicePrice;
  1334.         return $this;
  1335.     }
  1336.     /**
  1337.      * Get servicePrice
  1338.      *
  1339.      * @return string
  1340.      */
  1341.     public function getServicePrice()
  1342.     {
  1343.         return $this->servicePrice;
  1344.     }
  1345.     /**
  1346.      * Set subTotalPrice
  1347.      *
  1348.      * @param string $subTotalPrice
  1349.      *
  1350.      * @return AveProductFile
  1351.      */
  1352.     public function setSubTotalPrice($subTotalPrice)
  1353.     {
  1354.         $this->subTotalPrice $subTotalPrice;
  1355.         return $this;
  1356.     }
  1357.     /**
  1358.      * Get subTotalPrice
  1359.      *
  1360.      * @return string
  1361.      */
  1362.     public function getSubTotalPrice()
  1363.     {
  1364.         return $this->subTotalPrice;
  1365.     }
  1366.     /**
  1367.      * Set days
  1368.      *
  1369.      * @param string $days
  1370.      *
  1371.      * @return AveProductFile
  1372.      */
  1373.     public function setDays($days)
  1374.     {
  1375.         $this->days $days;
  1376.         return $this;
  1377.     }
  1378.     /**
  1379.      * Get days
  1380.      *
  1381.      * @return string
  1382.      */
  1383.     public function getDays()
  1384.     {
  1385.         return $this->days;
  1386.     }
  1387.     /**
  1388.      * Set supplierExt
  1389.      *
  1390.      * @param string $supplierExt
  1391.      *
  1392.      * @return AveProductFile
  1393.      */
  1394.     public function setSupplierExt($supplierExt)
  1395.     {
  1396.         $this->supplierExt $supplierExt;
  1397.         return $this;
  1398.     }
  1399.     /**
  1400.      * Get supplierExt
  1401.      *
  1402.      * @return string
  1403.      */
  1404.     public function getSupplierExt()
  1405.     {
  1406.         return $this->supplierExt;
  1407.     }
  1408.     /**
  1409.      * Set supplierExtId
  1410.      *
  1411.      * @param integer $supplierExtId
  1412.      *
  1413.      * @return AveProductFile
  1414.      */
  1415.     public function setSupplierExtId($supplierExtId)
  1416.     {
  1417.         $this->supplierExtId $supplierExtId;
  1418.         return $this;
  1419.     }
  1420.     /**
  1421.      * Get supplierExtId
  1422.      *
  1423.      * @return integer
  1424.      */
  1425.     public function getSupplierExtId()
  1426.     {
  1427.         return $this->supplierExtId;
  1428.     }
  1429.     /**
  1430.      * Set rankAv
  1431.      *
  1432.      * @param integer $rankAv
  1433.      *
  1434.      * @return AveProductFile
  1435.      */
  1436.     public function setRankAv($rankAv)
  1437.     {
  1438.         $this->rankAv $rankAv;
  1439.         return $this;
  1440.     }
  1441.     /**
  1442.      * Get rankAv
  1443.      *
  1444.      * @return integer
  1445.      */
  1446.     public function getRankAv()
  1447.     {
  1448.         return $this->rankAv;
  1449.     }
  1450.     /**
  1451.      * Set location
  1452.      *
  1453.      * @param string $location
  1454.      *
  1455.      * @return AveProductFile
  1456.      */
  1457.     public function setLocation($location)
  1458.     {
  1459.         $this->location $location;
  1460.         return $this;
  1461.     }
  1462.     /**
  1463.      * Get location
  1464.      *
  1465.      * @return string
  1466.      */
  1467.     public function getLocation()
  1468.     {
  1469.         return $this->location;
  1470.     }
  1471.     /**
  1472.      * Set idGpLounge
  1473.      *
  1474.      * @param integer $idGpLounge
  1475.      *
  1476.      * @return AveProductFile
  1477.      */
  1478.     public function setIdGpLounge($idGpLounge)
  1479.     {
  1480.         $this->idGpLounge $idGpLounge;
  1481.         return $this;
  1482.     }
  1483.     /**
  1484.      * Get idGpLounge
  1485.      *
  1486.      * @return integer
  1487.      */
  1488.     public function getIdGpLounge()
  1489.     {
  1490.         return $this->idGpLounge;
  1491.     }
  1492. }