<?php
namespace App\Entity;
use App\Repository\MenuCardRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=MenuCardRepository::class)
*/
class MenuCard
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $name;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $isSix;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private $isSeven;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat1;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat1;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat1;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat2;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat2;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat2;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat3;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat3;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat3;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat4;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat4;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat4;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat5;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat5;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat5;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat6;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat6;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat6;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat7;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat7;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat7;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat8;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat8;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat8;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat9;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat9;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat9;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat10;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat10;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $pricePlat10;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat1en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat1en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat2en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat2en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat3en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat3en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat4en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat4en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat5en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat5en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat6en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat6en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat7en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat7en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat8en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat8en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat9en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat9en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $namePlat10en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $descriptionPlat10en;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $nameEn;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $comment;
/**
* @ORM\Column(type="text", nullable=true)
*/
private $commentEn;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getIsSix(): ?bool
{
return $this->isSix;
}
public function setIsSix(?bool $isSix): self
{
$this->isSix = $isSix;
return $this;
}
public function getIsSeven(): ?bool
{
return $this->isSeven;
}
public function setIsSeven(?bool $isSeven): self
{
$this->isSeven = $isSeven;
return $this;
}
public function getNamePlat1(): ?string
{
return $this->namePlat1;
}
public function setNamePlat1(?string $namePlat1): self
{
$this->namePlat1 = $namePlat1;
return $this;
}
public function getDescriptionPlat1(): ?string
{
return $this->descriptionPlat1;
}
public function setDescriptionPlat1(?string $descriptionPlat1): self
{
$this->descriptionPlat1 = $descriptionPlat1;
return $this;
}
public function getPricePlat1(): ?string
{
return $this->pricePlat1;
}
public function setPricePlat1(?string $pricePlat1): self
{
$this->pricePlat1 = $pricePlat1;
return $this;
}
public function getNamePlat2(): ?string
{
return $this->namePlat2;
}
public function setNamePlat2(?string $namePlat2): self
{
$this->namePlat2 = $namePlat2;
return $this;
}
public function getDescriptionPlat2(): ?string
{
return $this->descriptionPlat2;
}
public function setDescriptionPlat2(?string $descriptionPlat2): self
{
$this->descriptionPlat2 = $descriptionPlat2;
return $this;
}
public function getPricePlat2(): ?string
{
return $this->pricePlat2;
}
public function setPricePlat2(?string $pricePlat2): self
{
$this->pricePlat2 = $pricePlat2;
return $this;
}
public function getNamePlat3(): ?string
{
return $this->namePlat3;
}
public function setNamePlat3(?string $namePlat3): self
{
$this->namePlat3 = $namePlat3;
return $this;
}
public function getDescriptionPlat3(): ?string
{
return $this->descriptionPlat3;
}
public function setDescriptionPlat3(?string $descriptionPlat3): self
{
$this->descriptionPlat3 = $descriptionPlat3;
return $this;
}
public function getPricePlat3(): ?string
{
return $this->pricePlat3;
}
public function setPricePlat3(?string $pricePlat3): self
{
$this->pricePlat3 = $pricePlat3;
return $this;
}
public function getNamePlat4(): ?string
{
return $this->namePlat4;
}
public function setNamePlat4(?string $namePlat4): self
{
$this->namePlat4 = $namePlat4;
return $this;
}
public function getDescriptionPlat4(): ?string
{
return $this->descriptionPlat4;
}
public function setDescriptionPlat4(?string $descriptionPlat4): self
{
$this->descriptionPlat4 = $descriptionPlat4;
return $this;
}
public function getPricePlat4(): ?string
{
return $this->pricePlat4;
}
public function setPricePlat4(?string $pricePlat4): self
{
$this->pricePlat4 = $pricePlat4;
return $this;
}
public function getNamePlat5(): ?string
{
return $this->namePlat5;
}
public function setNamePlat5(?string $namePlat5): self
{
$this->namePlat5 = $namePlat5;
return $this;
}
public function getDescriptionPlat5(): ?string
{
return $this->descriptionPlat5;
}
public function setDescriptionPlat5(?string $descriptionPlat5): self
{
$this->descriptionPlat5 = $descriptionPlat5;
return $this;
}
public function getPricePlat5(): ?string
{
return $this->pricePlat5;
}
public function setPricePlat5(?string $pricePlat5): self
{
$this->pricePlat5 = $pricePlat5;
return $this;
}
public function getNamePlat6(): ?string
{
return $this->namePlat6;
}
public function setNamePlat6(?string $namePlat6): self
{
$this->namePlat6 = $namePlat6;
return $this;
}
public function getDescriptionPlat6(): ?string
{
return $this->descriptionPlat6;
}
public function setDescriptionPlat6(?string $descriptionPlat6): self
{
$this->descriptionPlat6 = $descriptionPlat6;
return $this;
}
public function getPricePlat6(): ?string
{
return $this->pricePlat6;
}
public function setPricePlat6(?string $pricePlat6): self
{
$this->pricePlat6 = $pricePlat6;
return $this;
}
public function getNamePlat7(): ?string
{
return $this->namePlat7;
}
public function setNamePlat7(?string $namePlat7): self
{
$this->namePlat7 = $namePlat7;
return $this;
}
public function getDescriptionPlat7(): ?string
{
return $this->descriptionPlat7;
}
public function setDescriptionPlat7(?string $descriptionPlat7): self
{
$this->descriptionPlat7 = $descriptionPlat7;
return $this;
}
public function getPricePlat7(): ?string
{
return $this->pricePlat7;
}
public function setPricePlat7(?string $pricePlat7): self
{
$this->pricePlat7 = $pricePlat7;
return $this;
}
public function getNamePlat8(): ?string
{
return $this->namePlat8;
}
public function setNamePlat8(?string $namePlat8): self
{
$this->namePlat8 = $namePlat8;
return $this;
}
public function getDescriptionPlat8(): ?string
{
return $this->descriptionPlat8;
}
public function setDescriptionPlat8(?string $descriptionPlat8): self
{
$this->descriptionPlat8 = $descriptionPlat8;
return $this;
}
public function getPricePlat8(): ?string
{
return $this->pricePlat8;
}
public function setPricePlat8(?string $pricePlat8): self
{
$this->pricePlat8 = $pricePlat8;
return $this;
}
public function getNamePlat9(): ?string
{
return $this->namePlat9;
}
public function setNamePlat9(?string $namePlat9): self
{
$this->namePlat9 = $namePlat9;
return $this;
}
public function getDescriptionPlat9(): ?string
{
return $this->descriptionPlat9;
}
public function setDescriptionPlat9(?string $descriptionPlat9): self
{
$this->descriptionPlat9 = $descriptionPlat9;
return $this;
}
public function getPricePlat9(): ?string
{
return $this->pricePlat9;
}
public function setPricePlat9(?string $pricePlat9): self
{
$this->pricePlat9 = $pricePlat9;
return $this;
}
public function getNamePlat10(): ?string
{
return $this->namePlat10;
}
public function setNamePlat10(?string $namePlat10): self
{
$this->namePlat10 = $namePlat10;
return $this;
}
public function getDescriptionPlat10(): ?string
{
return $this->descriptionPlat10;
}
public function setDescriptionPlat10(?string $descriptionPlat10): self
{
$this->descriptionPlat10 = $descriptionPlat10;
return $this;
}
public function getPricePlat10(): ?string
{
return $this->pricePlat10;
}
public function setPricePlat10(?string $pricePlat10): self
{
$this->pricePlat10 = $pricePlat10;
return $this;
}
public function getNamePlat1en(): ?string
{
return $this->namePlat1en;
}
public function setNamePlat1en(?string $namePlat1en): self
{
$this->namePlat1en = $namePlat1en;
return $this;
}
public function getDescriptionPlat1en(): ?string
{
return $this->descriptionPlat1en;
}
public function setDescriptionPlat1en(?string $descriptionPlat1en): self
{
$this->descriptionPlat1en = $descriptionPlat1en;
return $this;
}
public function getNamePlat2en(): ?string
{
return $this->namePlat2en;
}
public function setNamePlat2en(?string $namePlat2en): self
{
$this->namePlat2en = $namePlat2en;
return $this;
}
public function getDescriptionPlat2en(): ?string
{
return $this->descriptionPlat2en;
}
public function setDescriptionPlat2en(?string $descriptionPlat2en): self
{
$this->descriptionPlat2en = $descriptionPlat2en;
return $this;
}
public function getNamePlat3en(): ?string
{
return $this->namePlat3en;
}
public function setNamePlat3en(?string $namePlat3en): self
{
$this->namePlat3en = $namePlat3en;
return $this;
}
public function getDescriptionPlat3en(): ?string
{
return $this->descriptionPlat3en;
}
public function setDescriptionPlat3en(?string $descriptionPlat3en): self
{
$this->descriptionPlat3en = $descriptionPlat3en;
return $this;
}
public function getNamePlat4en(): ?string
{
return $this->namePlat4en;
}
public function setNamePlat4en(?string $namePlat4en): self
{
$this->namePlat4en = $namePlat4en;
return $this;
}
public function getDescriptionPlat4en(): ?string
{
return $this->descriptionPlat4en;
}
public function setDescriptionPlat4en(?string $descriptionPlat4en): self
{
$this->descriptionPlat4en = $descriptionPlat4en;
return $this;
}
public function getNamePlat5en(): ?string
{
return $this->namePlat5en;
}
public function setNamePlat5en(?string $namePlat5en): self
{
$this->namePlat5en = $namePlat5en;
return $this;
}
public function getDescriptionPlat5en(): ?string
{
return $this->descriptionPlat5en;
}
public function setDescriptionPlat5en(?string $descriptionPlat5en): self
{
$this->descriptionPlat5en = $descriptionPlat5en;
return $this;
}
public function getNamePlat6en(): ?string
{
return $this->namePlat6en;
}
public function setNamePlat6en(?string $namePlat6en): self
{
$this->namePlat6en = $namePlat6en;
return $this;
}
public function getDescriptionPlat6en(): ?string
{
return $this->descriptionPlat6en;
}
public function setDescriptionPlat6en(?string $descriptionPlat6en): self
{
$this->descriptionPlat6en = $descriptionPlat6en;
return $this;
}
public function getNamePlat7en(): ?string
{
return $this->namePlat7en;
}
public function setNamePlat7en(?string $namePlat7en): self
{
$this->namePlat7en = $namePlat7en;
return $this;
}
public function getDescriptionPlat7en(): ?string
{
return $this->descriptionPlat7en;
}
public function setDescriptionPlat7en(?string $descriptionPlat7en): self
{
$this->descriptionPlat7en = $descriptionPlat7en;
return $this;
}
public function getNamePlat8en(): ?string
{
return $this->namePlat8en;
}
public function setNamePlat8en(?string $namePlat8en): self
{
$this->namePlat8en = $namePlat8en;
return $this;
}
public function getDescriptionPlat8en(): ?string
{
return $this->descriptionPlat8en;
}
public function setDescriptionPlat8en(?string $descriptionPlat8en): self
{
$this->descriptionPlat8en = $descriptionPlat8en;
return $this;
}
public function getNamePlat9en(): ?string
{
return $this->namePlat9en;
}
public function setNamePlat9en(?string $namePlat9en): self
{
$this->namePlat9en = $namePlat9en;
return $this;
}
public function getDescriptionPlat9en(): ?string
{
return $this->descriptionPlat9en;
}
public function setDescriptionPlat9en(?string $descriptionPlat9en): self
{
$this->descriptionPlat9en = $descriptionPlat9en;
return $this;
}
public function getNamePlat10en(): ?string
{
return $this->namePlat10en;
}
public function setNamePlat10en(?string $namePlat10en): self
{
$this->namePlat10en = $namePlat10en;
return $this;
}
public function getDescriptionPlat10en(): ?string
{
return $this->descriptionPlat10en;
}
public function setDescriptionPlat10en(?string $descriptionPlat10en): self
{
$this->descriptionPlat10en = $descriptionPlat10en;
return $this;
}
public function getNameEn(): ?string
{
return $this->nameEn;
}
public function setNameEn(?string $nameEn): self
{
$this->nameEn = $nameEn;
return $this;
}
public function getComment(): ?string
{
return $this->comment;
}
public function setComment(?string $comment): self
{
$this->comment = $comment;
return $this;
}
public function getCommentEn(): ?string
{
return $this->commentEn;
}
public function setCommentEn(?string $commentEn): self
{
$this->commentEn = $commentEn;
return $this;
}
}