src/Admin/Modules/OnlineService/Entity/OnlineServiceCreatorPriceListGroupItem.php line 12
<?phpnamespace App\Admin\Modules\OnlineService\Entity;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/*** @ORM\Table(name="online_service_creator_price_list_group_item")* @ORM\Entity*/class OnlineServiceCreatorPriceListGroupItem{/*** @ORM\Column(type="integer")* @ORM\Id* @ORM\GeneratedValue(strategy="AUTO")*/private $id;/*** @ORM\ManyToOne(targetEntity="App\Admin\Modules\OnlineService\Entity\OnlineServiceCreatorPriceListGroup", inversedBy="items")* @ORM\JoinColumns({* @ORM\JoinColumn(name="id_online_service_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="description", type="string", length=2048, nullable=true)*/private $description;/*** @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 getPriceInfo(): ?string{return $this->priceInfo;}public function setPriceInfo(?string $priceInfo): self{$this->priceInfo = $priceInfo;return $this;}public function getGroup(): ?OnlineServiceCreatorPriceListGroup{return $this->group;}public function setGroup(?OnlineServiceCreatorPriceListGroup $group): self{$this->group = $group;return $this;}public function getDescription(): ?string{return $this->description;}public function setDescription(?string $description): self{$this->description = $description;return $this;}}