src/Entity/Airplane.php line 17

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Documentation\HouseGuide;
  4. use App\Entity\Documentation\MasterGuide;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * Airplane
  10.  *
  11.  * @ORM\Table(name="airplane")
  12.  * @ORM\Entity()
  13.  */
  14. class Airplane
  15. {
  16.     /**
  17.      * @var int
  18.      *
  19.      * @ORM\Column(name="id", type="integer", nullable=false)
  20.      * @ORM\Id
  21.      * @ORM\GeneratedValue(strategy="AUTO")
  22.      */
  23.     private $id;
  24.     /**
  25.      * @var float
  26.      *
  27.      * @ORM\Column(name="cabin_total_volume", type="float", precision=10, scale=0, nullable=false)
  28.      */
  29.     private $cabinTotalVolume;
  30.     /**
  31.      * @var float
  32.      *
  33.      * @ORM\Column(name="cabin_maximum_weight", type="float", precision=10, scale=0, nullable=false)
  34.      */
  35.     private $cabinMaximumWeight;
  36.     /**
  37.      * @var float
  38.      *
  39.      * @ORM\Column(name="storage_total_volume", type="float", precision=10, scale=0, nullable=false)
  40.      */
  41.     private $storageTotalVolume;
  42.     /**
  43.      * @var float
  44.      *
  45.      * @ORM\Column(name="storage_maximum_weight", type="float", precision=10, scale=0, nullable=false)
  46.      */
  47.     private $storageMaximumWeight;
  48.     /**
  49.      * @var bool
  50.      *
  51.      * @ORM\Column(name="status", type="boolean", nullable=false)
  52.      */
  53.     private $status '0';
  54.     /**
  55.      * @ORM\OneToMany(targetEntity=HouseGuide::class, mappedBy="airplane")
  56.      */
  57.     private $houseGuides;
  58.     /**
  59.      * @ORM\Column(type="string", length=255)
  60.      */
  61.     private $model;
  62.     /**
  63.      * @ORM\OneToMany(targetEntity=MasterGuide::class, mappedBy="airplane")
  64.      */
  65.     private $masterGuides;
  66.     public function __construct()
  67.     {
  68.         $this->houseGuides = new ArrayCollection();
  69.         $this->masterGuides = new ArrayCollection();
  70.     }
  71.     public function getId(): ?int
  72.     {
  73.         return $this->id;
  74.     }
  75.     public function getCabinTotalVolume(): ?float
  76.     {
  77.         return $this->cabinTotalVolume;
  78.     }
  79.     public function setCabinTotalVolume(float $cabinTotalVolume): self
  80.     {
  81.         $this->cabinTotalVolume $cabinTotalVolume;
  82.         return $this;
  83.     }
  84.     public function getCabinMaximumWeight(): ?float
  85.     {
  86.         return $this->cabinMaximumWeight;
  87.     }
  88.     public function setCabinMaximumWeight(float $cabinMaximumWeight): self
  89.     {
  90.         $this->cabinMaximumWeight $cabinMaximumWeight;
  91.         return $this;
  92.     }
  93.     public function getStorageTotalVolume(): ?float
  94.     {
  95.         return $this->storageTotalVolume;
  96.     }
  97.     public function setStorageTotalVolume(float $storageTotalVolume): self
  98.     {
  99.         $this->storageTotalVolume $storageTotalVolume;
  100.         return $this;
  101.     }
  102.     public function getStorageMaximumWeight(): ?float
  103.     {
  104.         return $this->storageMaximumWeight;
  105.     }
  106.     public function setStorageMaximumWeight(float $storageMaximumWeight): self
  107.     {
  108.         $this->storageMaximumWeight $storageMaximumWeight;
  109.         return $this;
  110.     }
  111.     public function getOutDate(): ?\DateTimeInterface
  112.     {
  113.         return $this->outDate;
  114.     }
  115.     public function setOutDate(\DateTimeInterface $outDate): self
  116.     {
  117.         $this->outDate $outDate;
  118.         return $this;
  119.     }
  120.     public function isStatus(): ?bool
  121.     {
  122.         return $this->status;
  123.     }
  124.     public function setStatus(bool $status): self
  125.     {
  126.         $this->status $status;
  127.         return $this;
  128.     }
  129.     /**
  130.      * @return Collection<int, HouseGuide>
  131.      */
  132.     public function getHouseGuides(): Collection
  133.     {
  134.         return $this->houseGuides;
  135.     }
  136.     public function addHouseGuide(HouseGuide $houseGuide): self
  137.     {
  138.         if (!$this->houseGuides->contains($houseGuide)) {
  139.             $this->houseGuides[] = $houseGuide;
  140.             $houseGuide->setAirplane($this);
  141.         }
  142.         return $this;
  143.     }
  144.     public function removeHouseGuide(HouseGuide $houseGuide): self
  145.     {
  146.         if ($this->houseGuides->removeElement($houseGuide)) {
  147.             // set the owning side to null (unless already changed)
  148.             if ($houseGuide->getAirplane() === $this) {
  149.                 $houseGuide->setAirplane(null);
  150.             }
  151.         }
  152.         return $this;
  153.     }
  154.     public function getModel(): ?string
  155.     {
  156.         return $this->model;
  157.     }
  158.     public function setModel(string $model): self
  159.     {
  160.         $this->model $model;
  161.         return $this;
  162.     }
  163.     /**
  164.      * @return Collection<int, MasterGuide>
  165.      */
  166.     public function getMasterGuides(): Collection
  167.     {
  168.         return $this->masterGuides;
  169.     }
  170.     public function addMasterGuide(MasterGuide $masterGuide): self
  171.     {
  172.         if (!$this->masterGuides->contains($masterGuide)) {
  173.             $this->masterGuides[] = $masterGuide;
  174.             $masterGuide->setAirplane($this);
  175.         }
  176.         return $this;
  177.     }
  178.     public function removeMasterGuide(MasterGuide $masterGuide): self
  179.     {
  180.         if ($this->masterGuides->removeElement($masterGuide)) {
  181.             // set the owning side to null (unless already changed)
  182.             if ($masterGuide->getAirplane() === $this) {
  183.                 $masterGuide->setAirplane(null);
  184.             }
  185.         }
  186.         return $this;
  187.     }
  188. }