src/Entity/CRM/BhpOrderProductSettlements.php line 10
<?phpnamespace App\Entity\CRM;use App\Repository\BhpOrderProductSettlementsRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: BhpOrderProductSettlementsRepository::class)]class BhpOrderProductSettlements{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]private ?\DateTimeInterface $firstStageDate = null;#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]private ?\DateTimeInterface $secondStageDate = null;#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]private ?\DateTimeInterface $endDate = null;#[ORM\ManyToOne(inversedBy: 'bhpOrderProductSettlements')]private ?BhpInspector $bhpInspector = null;#[ORM\ManyToOne(inversedBy: 'bhpOrderProductSettlements')]private ?BhpOrderProduct $bhpOrderProduct = null;#[ORM\Column(nullable: true)]private ?float $firstStageAmount = null;#[ORM\Column(nullable: true)]private ?float $secondStageAmount = null;#[ORM\Column(nullable: true)]private ?float $endedAmount = null;#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]private ?\DateTimeInterface $firstStageSettledDate = null;#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]private ?\DateTimeInterface $secondStageSettledDate = null;#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]private ?\DateTimeInterface $endedSettledDate = null;#[ORM\Column(nullable: true)]private ?bool $firstStageSettled = null;#[ORM\Column(nullable: true)]private ?bool $secondStageSettled = null;#[ORM\Column(nullable: true)]private ?bool $endedSettled = null;#[ORM\Column(length: 255, nullable: true)]private ?string $firstStageInvoice = null;#[ORM\Column(length: 255, nullable: true)]private ?string $secondStageInvoice = null;#[ORM\Column(length: 255, nullable: true)]private ?string $endedInvoice = null;public function getId(): ?int{return $this->id;}public function getFirstStageDate(): ?\DateTimeInterface{return $this->firstStageDate;}public function setFirstStageDate(?\DateTimeInterface $firstStageDate): static{$this->firstStageDate = $firstStageDate;return $this;}public function getSecondStageDate(): ?\DateTimeInterface{return $this->secondStageDate;}public function setSecondStageDate(?\DateTimeInterface $secondStageDate): static{$this->secondStageDate = $secondStageDate;return $this;}public function getEndDate(): ?\DateTimeInterface{return $this->endDate;}public function setEndDate(?\DateTimeInterface $end_date): static{$this->endDate = $end_date;return $this;}public function getBhpInspector(): ?BhpInspector{return $this->bhpInspector;}public function setBhpInspector(?BhpInspector $bhpInspector): static{$this->bhpInspector = $bhpInspector;return $this;}public function getBhpOrderProduct(): ?BhpOrderProduct{return $this->bhpOrderProduct;}public function setBhpOrderProduct(?BhpOrderProduct $bhpOrderProduct): static{$this->bhpOrderProduct = $bhpOrderProduct;return $this;}public function getFirstStageAmount(): ?float{return $this->firstStageAmount;}public function setFirstStageAmount(?float $firstStageAmount): static{$this->firstStageAmount = $firstStageAmount;return $this;}public function getSecondStageAmount(): ?float{return $this->secondStageAmount;}public function setSecondStageAmount(?float $secondStageAmount): static{$this->secondStageAmount = $secondStageAmount;return $this;}public function getEndedAmount(): ?float{return $this->endedAmount;}public function setEndedAmount(?float $endedAmount): static{$this->endedAmount = $endedAmount;return $this;}public function getFirstStageSettledDate(): ?\DateTimeInterface{return $this->firstStageSettledDate;}public function setFirstStageSettledDate(?\DateTimeInterface $firstStageSettledDate): static{$this->firstStageSettledDate = $firstStageSettledDate;return $this;}public function getSecondStageSettledDate(): ?\DateTimeInterface{return $this->secondStageSettledDate;}public function setSecondStageSettledDate(?\DateTimeInterface $secondStageSettledDate): static{$this->secondStageSettledDate = $secondStageSettledDate;return $this;}public function getEndedSettledDate(): ?\DateTimeInterface{return $this->endedSettledDate;}public function setEndedSettledDate(?\DateTimeInterface $endedSettledDate): static{$this->endedSettledDate = $endedSettledDate;return $this;}public function isFirstStageSettled(): ?bool{return $this->firstStageSettled;}public function setFirstStageSettled(?bool $firstStageSettled): static{$this->firstStageSettled = $firstStageSettled;return $this;}public function isSecondStageSettled(): ?bool{return $this->secondStageSettled;}public function setSecondStageSettled(?bool $secondStageSettled): static{$this->secondStageSettled = $secondStageSettled;return $this;}public function isEndedSettled(): ?bool{return $this->endedSettled;}public function setEndedSettled(?bool $endedSettled): static{$this->endedSettled = $endedSettled;return $this;}public function getFirstStageInvoice(): ?string{return $this->firstStageInvoice;}public function setFirstStageInvoice(?string $firstStageInvoice): static{$this->firstStageInvoice = $firstStageInvoice;return $this;}public function getSecondStageInvoice(): ?string{return $this->secondStageInvoice;}public function setSecondStageInvoice(?string $secondStageInvoice): static{$this->secondStageInvoice = $secondStageInvoice;return $this;}public function getEndedInvoice(): ?string{return $this->endedInvoice;}public function setEndedInvoice(?string $endedInvoice): static{$this->endedInvoice = $endedInvoice;return $this;}}