<?php
namespace App\Entity;
use App\Repository\PckMembershipTypePricesRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Table(name: 'pck_membershipTypePrices')]
#[ORM\Entity(repositoryClass: PckMembershipTypePricesRepository::class)]
class PckMembershipTypePrices
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(name: 'membershipTypeId', type: 'integer', nullable: true)]
private $membershipTypeId;
#[ORM\Column(name: 'is_highSchool', type: 'boolean', nullable: true)]
private $is_highSchool;
#[ORM\Column(name: 'pricePerCredit', type: 'integer', nullable: true)]
private $pricePerCredit;
public function getId(): ?int
{
return $this->id;
}
public function getMemberhsipTypeId(): ?int
{
return $this->membershipTypeId;
}
public function setMemberhsipTypeId(?int $memberhsipTypeId): self
{
$this->membershipTypeId = $memberhsipTypeId;
return $this;
}
public function getIsHighSchool(): ?bool
{
return $this->is_highSchool;
}
public function setIsHighSchool(?bool $is_highSchool): self
{
$this->is_highSchool = $is_highSchool;
return $this;
}
public function getPricePerCredit(): ?int
{
return $this->pricePerCredit;
}
public function setPricePerCredit(?int $pricePerCredit): self
{
$this->pricePerCredit = $pricePerCredit;
return $this;
}
public function getMembershipTypeId(): ?int
{
return $this->membershipTypeId;
}
public function setMembershipTypeId(?int $membershipTypeId): self
{
$this->membershipTypeId = $membershipTypeId;
return $this;
}
}