src/Entity/CRM/Awards.php line 10
<?phpnamespace App\Entity\CRM;use App\Repository\AwardsRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: AwardsRepository::class)]class Awards{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne(inversedBy: 'awards')]#[ORM\JoinColumn(nullable: false)]private ?Consultant $consultant = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?\DateTimeInterface $addedDate = null;#[ORM\Column]private ?int $hour = null;#[ORM\Column]private ?float $sumOfOther = null;#[ORM\Column]private ?float $sumOfAgreement = null;#[ORM\Column]private ?float $ptForOther = null;#[ORM\Column]private ?float $ptForAgreement = null;#[ORM\Column(type: Types::TEXT)]private ?string $comment = null;#[ORM\Column]private ?float $ptSum = null;#[ORM\Column]private ?float $sumAll = null;#[ORM\Column]private ?int $place = null;#[ORM\Column]private int $type = 0;#[ORM\Column]private int $SumOfSprawozdania = 0;#[ORM\Column]private float $setPtForSprawozdania = 0;public function getId(): ?int{return $this->id;}public function getConsultant(): ?Consultant{return $this->consultant;}public function setConsultant(?Consultant $consultant): static{$this->consultant = $consultant;return $this;}public function getAddedDate(): ?\DateTimeInterface{return $this->addedDate;}public function setAddedDate(\DateTimeInterface $addedDate): static{$this->addedDate = $addedDate;return $this;}public function getHour(): ?int{return $this->hour;}public function setHour(int $hour): static{$this->hour = $hour;return $this;}public function getSumOfOther(): ?float{return $this->sumOfOther;}public function setSumOfOther(float $sumOfOther): static{$this->sumOfOther = $sumOfOther;return $this;}public function getSumOfAgreement(): ?float{return $this->sumOfAgreement;}public function setSumOfAgreement(float $sumOfAgreement): static{$this->sumOfAgreement = $sumOfAgreement;return $this;}public function getPtForOther(): ?float{return $this->ptForOther;}public function setPtForOther(float $ptForOther): static{$this->ptForOther = $ptForOther;return $this;}public function getPtForAgreement(): ?float{return $this->ptForAgreement;}public function setPtForAgreement(float $ptForAgreement): static{$this->ptForAgreement = $ptForAgreement;return $this;}public function getComment(): ?string{return $this->comment;}public function setComment(string $comment): static{$this->comment = $comment;return $this;}public function getPtSum(): ?float{return $this->ptSum;}public function setPtSum(float $ptSum): static{$this->ptSum = $ptSum;return $this;}public function getSumAll(): ?float{return $this->sumAll;}public function setSumAll(float $sumAll): static{$this->sumAll = $sumAll;return $this;}public function getPlace(): ?int{return $this->place;}public function setPlace(int $place): static{$this->place = $place;return $this;}public function getType(): ?int{return $this->type;}public function setType(int $type): static{$this->type = $type;return $this;}public function getSumOfSprawozdania(): ?int{return $this->SumOfSprawozdania;}public function setSumOfSprawozdania(int $SumOfSprawozdania): static{$this->SumOfSprawozdania = $SumOfSprawozdania;return $this;}public function getSetPtForSprawozdania(): ?float{return $this->setPtForSprawozdania;}public function setSetPtForSprawozdania(float $setPtForSprawozdania): static{$this->setPtForSprawozdania = $setPtForSprawozdania;return $this;}}