src/Entity/TrueUp.php line 10
<?phpnamespace App\Entity;use App\Repository\TrueUpRepository;use Doctrine\ORM\Mapping as ORM;use Gedmo\Timestampable\Traits\TimestampableEntity;#[ORM\Entity(repositoryClass: TrueUpRepository::class)]class TrueUp{use TimestampableEntity;#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\ManyToOne]#[ORM\JoinColumn(nullable: false)]private ?User $user = null;#[ORM\Column]private ?int $amtInPennies = null;#[ORM\ManyToOne]#[ORM\JoinColumn(nullable: false)]private ?PaymentPeriod $period = null;#[ORM\ManyToOne]private ?AggregatedCommissions $aggregatedCommissions = null;#[ORM\ManyToOne(inversedBy: 'trueUps')]private ?AggregatedTrueUp $aggregatedTrueUp = null;#[ORM\ManyToOne(inversedBy: 'trueUps')]private ?TotalDue $totalDue = null;#[ORM\ManyToOne(inversedBy: 'trueUps')]#[ORM\JoinColumn(nullable: false)]private ?UserPaymentPeriod $userPaymentPeriod = null;public function getId(): ?int{return $this->id;}public function getUser(): ?User{return $this->user;}public function setUser(?User $user): self{$this->user = $user;return $this;}public function getAmtInPennies(): ?int{return $this->amtInPennies;}public function setAmtInPennies(int $amtInPennies): self{$this->amtInPennies = $amtInPennies;return $this;}public function getPeriod(): ?PaymentPeriod{return $this->period;}public function setPeriod(?PaymentPeriod $period): self{$this->period = $period;return $this;}public function getAggregatedCommissions(): ?AggregatedCommissions{return $this->aggregatedCommissions;}public function setAggregatedCommissions(?AggregatedCommissions $aggregatedCommissions): self{$this->aggregatedCommissions = $aggregatedCommissions;return $this;}public function getAggregatedTrueUp(): ?AggregatedTrueUp{return $this->aggregatedTrueUp;}public function setAggregatedTrueUp(?AggregatedTrueUp $aggregatedTrueUp): self{$this->aggregatedTrueUp = $aggregatedTrueUp;return $this;}public function getTotalDue(): ?TotalDue{return $this->totalDue;}public function setTotalDue(?TotalDue $totalDue): self{$this->totalDue = $totalDue;return $this;}public function getUserPaymentPeriod(): ?UserPaymentPeriod{return $this->userPaymentPeriod;}public function setUserPaymentPeriod(?UserPaymentPeriod $userPaymentPeriod): self{$this->userPaymentPeriod = $userPaymentPeriod;return $this;}}