src/Admin/Modules/OfferGenerator/Entity/OfferGeneratorPriceListGroupItem.php line 12
<?phpnamespace App\Admin\Modules\OfferGenerator\Entity;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/*** @ORM\Table(name="offer_generator_price_list_group_item")* @ORM\Entity*/class OfferGeneratorPriceListGroupItem{/*** @ORM\Column(type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @ORM\ManyToOne(targetEntity="App\Admin\Modules\OfferGenerator\Entity\OfferGeneratorPriceListGroup", inversedBy="items")* @ORM\JoinColumns({* @ORM\JoinColumn(name="id_offer_generator_price_list_group", referencedColumnName="id", nullable=false, onDelete="CASCADE")* })*/private $group;/*** @ORM\Column(name="name", type="string", length=255, nullable=false)*/private $name;/*** @ORM\Column(name="price", type="decimal", precision=14, scale=2, nullable=false)*/private $price;/*** @ORM\Column(name="price_info", type="string", length=100, nullable=true)*/private $priceInfo;public function __toString(){return $this->name;}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 getPrice(): ?string{return $this->price;}public function setPrice(string $price): self{$this->price = $price;return $this;}public function getGroup(): ?OfferGeneratorPriceListGroup{return $this->group;}public function setGroup(?OfferGeneratorPriceListGroup $group): self{$this->group = $group;return $this;}public function getPriceInfo(): ?string{return $this->priceInfo;}public function setPriceInfo(?string $priceInfo): self{$this->priceInfo = $priceInfo;return $this;}}