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

Open in your IDE?
  1. <?php
  2. namespace App\MDS\AvexpressBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * AveProductFileLocationNames
  6.  *
  7.  * @ORM\Table(name="ave_product_file_location_names")
  8.  * @ORM\Entity(repositoryClass="App\MDS\AvexpressBundle\Repository\AveProductFileLocationNamesRepository")
  9.  */
  10. class AveProductFileLocationNames
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer")
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="Name", type="string", length=255)
  24.      */
  25.     private $name;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="Description", type="string", length=255)
  30.      */
  31.     private $description;
  32.     /**
  33.      * @var int
  34.      * ID de ReservationLoungeDetails
  35.      *
  36.      * @ORM\Column(name="idGpLounge", type="integer", nullable=true)
  37.      */
  38.     private $idGpLounge;
  39.     /**
  40.      * @var \DateTime
  41.      *
  42.      * @ORM\Column(name="createdAt", type="datetime")
  43.      */
  44.     private $createdAt;
  45.     /**
  46.      * @var int
  47.      *
  48.      * @ORM\Column(name="createdId", type="integer")
  49.      */
  50.     private $createdId;
  51.     /**
  52.      * @var \DateTime
  53.      *
  54.      * @ORM\Column(name="updatedAt", type="datetime")
  55.      */
  56.     private $updatedAt;
  57.     /**
  58.      * @var int
  59.      *
  60.      * @ORM\Column(name="updatedId", type="integer")
  61.      */
  62.     private $updatedId;
  63.     /**
  64.      * Get id
  65.      *
  66.      * @return int
  67.      */
  68.     public function getId()
  69.     {
  70.         return $this->id;
  71.     }
  72.     /**
  73.      * Set name
  74.      *
  75.      * @param string $name
  76.      *
  77.      * @return AveProductFileLocationNames
  78.      */
  79.     public function setName($name)
  80.     {
  81.         $this->name $name;
  82.         return $this;
  83.     }
  84.     /**
  85.      * Get name
  86.      *
  87.      * @return string
  88.      */
  89.     public function getName()
  90.     {
  91.         return $this->name;
  92.     }
  93.     /**
  94.      * Set description
  95.      *
  96.      * @param string $description
  97.      *
  98.      * @return AveProductFileLocationNames
  99.      */
  100.     public function setDescription($description)
  101.     {
  102.         $this->description $description;
  103.         return $this;
  104.     }
  105.     /**
  106.      * Get description
  107.      *
  108.      * @return string
  109.      */
  110.     public function getDescription()
  111.     {
  112.         return $this->description;
  113.     }
  114.     /**
  115.      * Set createdAt
  116.      *
  117.      * @param \DateTime $createdAt
  118.      *
  119.      * @return AveProductFileLocationNames
  120.      */
  121.     public function setCreatedAt($createdAt)
  122.     {
  123.         $this->createdAt $createdAt;
  124.         return $this;
  125.     }
  126.     /**
  127.      * Get createdAt
  128.      *
  129.      * @return \DateTime
  130.      */
  131.     public function getCreatedAt()
  132.     {
  133.         return $this->createdAt;
  134.     }
  135.     /**
  136.      * Set createdId
  137.      *
  138.      * @param integer $createdId
  139.      *
  140.      * @return AveProductFileLocationNames
  141.      */
  142.     public function setCreatedId($createdId)
  143.     {
  144.         $this->createdId $createdId;
  145.         return $this;
  146.     }
  147.     /**
  148.      * Get createdId
  149.      *
  150.      * @return integer
  151.      */
  152.     public function getCreatedId()
  153.     {
  154.         return $this->createdId;
  155.     }
  156.     /**
  157.      * Set updatedAt
  158.      *
  159.      * @param \DateTime $updatedAt
  160.      *
  161.      * @return AveProductFileLocationNames
  162.      */
  163.     public function setUpdatedAt($updatedAt)
  164.     {
  165.         $this->updatedAt $updatedAt;
  166.         return $this;
  167.     }
  168.     /**
  169.      * Get updatedAt
  170.      *
  171.      * @return \DateTime
  172.      */
  173.     public function getUpdatedAt()
  174.     {
  175.         return $this->updatedAt;
  176.     }
  177.     /**
  178.      * Set updatedId
  179.      *
  180.      * @param integer $updatedId
  181.      *
  182.      * @return AveProductFileLocationNames
  183.      */
  184.     public function setUpdatedId($updatedId)
  185.     {
  186.         $this->updatedId $updatedId;
  187.         return $this;
  188.     }
  189.     /**
  190.      * Get updatedId
  191.      *
  192.      * @return integer
  193.      */
  194.     public function getUpdatedId()
  195.     {
  196.         return $this->updatedId;
  197.     }
  198.     /**
  199.      * Set idGpLounge
  200.      *
  201.      * @param integer $idGpLounge
  202.      *
  203.      * @return AveProductFileLocationNames
  204.      */
  205.     public function setIdGpLounge($idGpLounge)
  206.     {
  207.         $this->idGpLounge $idGpLounge;
  208.         return $this;
  209.     }
  210.     /**
  211.      * Get idGpLounge
  212.      *
  213.      * @return integer
  214.      */
  215.     public function getIdGpLounge()
  216.     {
  217.         return $this->idGpLounge;
  218.     }
  219. }