src/Entity/Documentation/MasterGuideHouseInfo.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Documentation;
  3. use App\Repository\Documentation\MasterGuideHouseInfoRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=MasterGuideHouseInfoRepository::class)
  7.  * @ORM\Table(name="documentation_master_guide_info")
  8.  */
  9. class MasterGuideHouseInfo
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\GeneratedValue
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\ManyToOne(targetEntity=MasterGuide::class, inversedBy="masterGuideHouseInfos")
  19.      * @ORM\JoinColumn(nullable=false)
  20.      */
  21.     private $masterGuide;
  22.     /**
  23.      * @ORM\ManyToOne(targetEntity=HouseGuide::class, inversedBy="masterGuideHouseInfos")
  24.      * @ORM\JoinColumn(nullable=false)
  25.      */
  26.     private $houseGuide;
  27.     /**
  28.      * @ORM\Column(type="string", length=255)
  29.      */
  30.     private $rateClass;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getMasterGuide(): ?MasterGuide
  36.     {
  37.         return $this->masterGuide;
  38.     }
  39.     public function setMasterGuide(?MasterGuide $masterGuide): self
  40.     {
  41.         $this->masterGuide $masterGuide;
  42.         return $this;
  43.     }
  44.     public function getHouseGuide(): ?HouseGuide
  45.     {
  46.         return $this->houseGuide;
  47.     }
  48.     public function setHouseGuide(?HouseGuide $houseGuide): self
  49.     {
  50.         $this->houseGuide $houseGuide;
  51.         return $this;
  52.     }
  53.     public function getRateClass(): ?string
  54.     {
  55.         return $this->rateClass;
  56.     }
  57.     public function setRateClass(string $rateClass): self
  58.     {
  59.         $this->rateClass $rateClass;
  60.         return $this;
  61.     }
  62. }