src/Entity/GalleryWebsite.php line 21

Open in your IDE?
  1. <?php
  2. /**
  3.  * Weak entity to bridge Galleries and Websites accross different entity managers
  4.  *
  5.  * $Project: Alliancemarkets2 $
  6.  * $Id$
  7.  *
  8.  * @package alliancemarkets2
  9.  * @author George Matyas <webexciter@yahoo.com>
  10.  * @version $Revision$
  11.  */
  12. namespace App\Entity;
  13. use Doctrine\ORM\Mapping as ORM;
  14. /**
  15.  * @ORM\Entity(repositoryClass="App\EntityRepo\GalleryWebsiteRepo")
  16.  * @ORM\Table(name="gallery_website")
  17.  */
  18. class GalleryWebsite
  19. {
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue(strategy="AUTO")
  24.      */ 
  25.     protected $galleryWebsiteId=0;
  26.     /**
  27.      * @ORM\Column(type="integer", length=100)
  28.      */    
  29.     protected $WebsiteId=0;
  30.     /**
  31.      * Get galleryWebsiteId
  32.      *
  33.      * @return integer
  34.      */
  35.     public function getGalleryWebsiteId()
  36.     {
  37.         return $this->galleryWebsiteId;
  38.     }
  39.     /**
  40.      * Set websiteId
  41.      *
  42.      * @param integer $websiteId
  43.      *
  44.      * @return GalleryWebsite
  45.      */
  46.     public function setWebsiteId($websiteId)
  47.     {
  48.         $this->WebsiteId $websiteId;
  49.         return $this;
  50.     }
  51.     /**
  52.      * Get websiteId
  53.      *
  54.      * @return integer
  55.      */
  56.     public function getWebsiteId()
  57.     {
  58.         return $this->WebsiteId;
  59.     }
  60. }