Procházet zdrojové kódy

new entities: remove non-relation properties

Olivier Massot před 1 rokem
rodič
revize
a809ea29f8

+ 1 - 4
src/Entity/Awin/Product.php

@@ -1,14 +1,11 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Awin;
 
 use ApiPlatform\Metadata\ApiResource;
+use DateTimeInterface;
 use Doctrine\Common\Collections\ArrayCollection;
 use Doctrine\Common\Collections\Collection;
 use Doctrine\ORM\Mapping as ORM;

+ 0 - 116
src/Entity/Billing/Afi.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -24,30 +20,6 @@ class Afi
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $date;
-
-    #[ORM\Column]
-    protected mixed $samplingDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\OneToMany(mappedBy: 'afi', targetEntity: Bill::class, cascade: ['persist'], orphanRemoval: true)]
     protected Collection $bills;
 
@@ -65,94 +37,6 @@ class Afi
         return $this;
     }
 
-    function getDate(): mixed
-    {
-        return $this->date;
-    }
-
-    function setDate(mixed $date): self
-    {
-        $this->date = $date;
-        return $this;
-    }
-
-    function getSamplingDate(): mixed
-    {
-        return $this->samplingDate;
-    }
-
-    function setSamplingDate(mixed $samplingDate): self
-    {
-        $this->samplingDate = $samplingDate;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getBills(): Collection
     {
         return $this->bills;

+ 0 - 186
src/Entity/Billing/BillSchedule.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -25,45 +21,6 @@ class BillSchedule
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $label;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $isActive;
-
-    #[ORM\Column]
-    protected mixed $firstPayment;
-
-    #[ORM\Column]
-    protected mixed $periodicity;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $scheduleNumber;
-
-    #[ORM\Column]
-    protected mixed $firstBillScheduleDate;
-
-    #[ORM\Column]
-    protected mixed $paymentFirstMonth;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\ManyToOne(targetEntity: Organization::class, cascade: [], inversedBy: 'billSchedules')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     protected App\Entity\Organization\Organization $organization;
@@ -88,149 +45,6 @@ class BillSchedule
         return $this;
     }
 
-    function getLabel(): mixed
-    {
-        return $this->label;
-    }
-
-    function setLabel(mixed $label): self
-    {
-        $this->label = $label;
-        return $this;
-    }
-
-    function getIsActive(): bool
-    {
-        return $this->isActive;
-    }
-
-    function setIsActive(bool $isActive): self
-    {
-        $this->isActive = $isActive;
-        return $this;
-    }
-
-    function getFirstPayment(): mixed
-    {
-        return $this->firstPayment;
-    }
-
-    function setFirstPayment(mixed $firstPayment): self
-    {
-        $this->firstPayment = $firstPayment;
-        return $this;
-    }
-
-    function getPeriodicity(): mixed
-    {
-        return $this->periodicity;
-    }
-
-    function setPeriodicity(mixed $periodicity): self
-    {
-        $this->periodicity = $periodicity;
-        return $this;
-    }
-
-    function getScheduleNumber(): int
-    {
-        return $this->scheduleNumber;
-    }
-
-    function setScheduleNumber(int $scheduleNumber): self
-    {
-        $this->scheduleNumber = $scheduleNumber;
-        return $this;
-    }
-
-    function getFirstBillScheduleDate(): mixed
-    {
-        return $this->firstBillScheduleDate;
-    }
-
-    function setFirstBillScheduleDate(mixed $firstBillScheduleDate): self
-    {
-        $this->firstBillScheduleDate = $firstBillScheduleDate;
-        return $this;
-    }
-
-    function getPaymentFirstMonth(): mixed
-    {
-        return $this->paymentFirstMonth;
-    }
-
-    function setPaymentFirstMonth(mixed $paymentFirstMonth): self
-    {
-        $this->paymentFirstMonth = $paymentFirstMonth;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getOrganization(): App\Entity\Organization\Organization
     {
         return $this->organization;

+ 0 - 102
src/Entity/Billing/BillScheduleDate.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -21,27 +17,6 @@ class BillScheduleDate
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $scheduleDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\ManyToOne(targetEntity: BillSchedule::class, cascade: ['persist'], inversedBy: 'scheduleDates')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     protected mixed $billSchedule;
@@ -57,83 +32,6 @@ class BillScheduleDate
         return $this;
     }
 
-    function getScheduleDate(): mixed
-    {
-        return $this->scheduleDate;
-    }
-
-    function setScheduleDate(mixed $scheduleDate): self
-    {
-        $this->scheduleDate = $scheduleDate;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getBillSchedule(): mixed
     {
         return $this->billSchedule;

+ 0 - 102
src/Entity/Billing/CirilCivil.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -24,27 +20,6 @@ class CirilCivil
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $date;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\OneToMany(mappedBy: 'cirilCivil', targetEntity: Bill::class, cascade: ['persist'], orphanRemoval: true)]
     protected Collection $bills;
 
@@ -62,83 +37,6 @@ class CirilCivil
         return $this;
     }
 
-    function getDate(): mixed
-    {
-        return $this->date;
-    }
-
-    function setDate(mixed $date): self
-    {
-        $this->date = $date;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getBills(): Collection
     {
         return $this->bills;

+ 0 - 158
src/Entity/Billing/FamilyQuotientBand.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -23,39 +19,6 @@ class FamilyQuotientBand
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $label;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $isActive;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $lowerBound;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $upperBound;
-
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    protected string $calculationFormula;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\ManyToOne(targetEntity: FamilyQuotientModel::class, cascade: [], inversedBy: 'familyQuotientBands')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     protected mixed $familyQuotientModel;
@@ -82,127 +45,6 @@ class FamilyQuotientBand
         return $this;
     }
 
-    function getLabel(): mixed
-    {
-        return $this->label;
-    }
-
-    function setLabel(mixed $label): self
-    {
-        $this->label = $label;
-        return $this;
-    }
-
-    function getIsActive(): bool
-    {
-        return $this->isActive;
-    }
-
-    function setIsActive(bool $isActive): self
-    {
-        $this->isActive = $isActive;
-        return $this;
-    }
-
-    function getLowerBound(): int
-    {
-        return $this->lowerBound;
-    }
-
-    function setLowerBound(int $lowerBound): self
-    {
-        $this->lowerBound = $lowerBound;
-        return $this;
-    }
-
-    function getUpperBound(): int
-    {
-        return $this->upperBound;
-    }
-
-    function setUpperBound(int $upperBound): self
-    {
-        $this->upperBound = $upperBound;
-        return $this;
-    }
-
-    function getCalculationFormula(): string
-    {
-        return $this->calculationFormula;
-    }
-
-    function setCalculationFormula(string $calculationFormula): self
-    {
-        $this->calculationFormula = $calculationFormula;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getFamilyQuotientModel(): mixed
     {
         return $this->familyQuotientModel;

+ 0 - 102
src/Entity/Billing/FamilyQuotientBandDetail.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -24,27 +20,6 @@ class FamilyQuotientBandDetail
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    protected string $calculationFormula;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\ManyToOne(targetEntity: FamilyQuotientBand::class, cascade: [], inversedBy: 'familyQuotientBandDetails')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     protected mixed $familyQuotientBand;
@@ -67,83 +42,6 @@ class FamilyQuotientBandDetail
         return $this;
     }
 
-    function getCalculationFormula(): string
-    {
-        return $this->calculationFormula;
-    }
-
-    function setCalculationFormula(string $calculationFormula): self
-    {
-        $this->calculationFormula = $calculationFormula;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getFamilyQuotientBand(): mixed
     {
         return $this->familyQuotientBand;

+ 0 - 116
src/Entity/Billing/FamilyQuotientModel.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -25,30 +21,6 @@ class FamilyQuotientModel
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $label;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $isActive;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\ManyToOne(targetEntity: Organization::class, cascade: [], inversedBy: 'familyQuotientModels')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     protected App\Entity\Organization\Organization $organization;
@@ -70,94 +42,6 @@ class FamilyQuotientModel
         return $this;
     }
 
-    function getLabel(): mixed
-    {
-        return $this->label;
-    }
-
-    function setLabel(mixed $label): self
-    {
-        $this->label = $label;
-        return $this;
-    }
-
-    function getIsActive(): bool
-    {
-        return $this->isActive;
-    }
-
-    function setIsActive(bool $isActive): self
-    {
-        $this->isActive = $isActive;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getOrganization(): App\Entity\Organization\Organization
     {
         return $this->organization;

+ 0 - 102
src/Entity/Billing/Odyssee.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -24,27 +20,6 @@ class Odyssee
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    protected mixed $date;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     #[ORM\OneToMany(mappedBy: 'odyssee', targetEntity: Bill::class, cascade: ['persist'], orphanRemoval: true)]
     protected Collection $bills;
 
@@ -62,83 +37,6 @@ class Odyssee
         return $this;
     }
 
-    function getDate(): mixed
-    {
-        return $this->date;
-    }
-
-    function setDate(mixed $date): self
-    {
-        $this->date = $date;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getBills(): Collection
     {
         return $this->bills;

+ 0 - 102
src/Entity/Billing/PayboxPaymentReturn.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Billing;
@@ -23,27 +19,6 @@ class PayboxPaymentReturn
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    protected string $content;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    protected ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    protected int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    protected bool $draft;
-
     function getId(): int
     {
         return $this->id;
@@ -54,81 +29,4 @@ class PayboxPaymentReturn
         $this->id = $id;
         return $this;
     }
-
-    function getContent(): string
-    {
-        return $this->content;
-    }
-
-    function setContent(string $content): self
-    {
-        $this->content = $content;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
 }

+ 0 - 4
src/Entity/Core/LoginLog.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Core;

+ 0 - 200
src/Entity/Education/EducationCurriculumPack.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Education;
@@ -27,48 +23,6 @@ class EducationCurriculumPack
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    private mixed $label;
-
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    private string $description;
-
-    #[ORM\Column]
-    private mixed $educationTypeEnum;
-
-    #[ORM\Column(options: ['default' => false])]
-    private bool $isActive;
-
-    #[ORM\Column(options: ['default' => false])]
-    private bool $ielEnabled;
-
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    private string $pedagogicObjectifs;
-
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    private string $pedagogicContent;
-
-    #[ORM\Column(length: 255, options: ['nullable' => true])]
-    private string $accessCondition;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    private ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    private ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    private bool $draft;
-
     #[ORM\ManyToOne(targetEntity: Organization::class, cascade: [], inversedBy: 'educationCurriculumPacks')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     public App\Entity\Organization\Organization $organization;
@@ -114,160 +68,6 @@ class EducationCurriculumPack
         return $this;
     }
 
-    function getLabel(): mixed
-    {
-        return $this->label;
-    }
-
-    function setLabel(mixed $label): self
-    {
-        $this->label = $label;
-        return $this;
-    }
-
-    function getDescription(): string
-    {
-        return $this->description;
-    }
-
-    function setDescription(string $description): self
-    {
-        $this->description = $description;
-        return $this;
-    }
-
-    function getEducationTypeEnum(): mixed
-    {
-        return $this->educationTypeEnum;
-    }
-
-    function setEducationTypeEnum(mixed $educationTypeEnum): self
-    {
-        $this->educationTypeEnum = $educationTypeEnum;
-        return $this;
-    }
-
-    function getIsActive(): bool
-    {
-        return $this->isActive;
-    }
-
-    function setIsActive(bool $isActive): self
-    {
-        $this->isActive = $isActive;
-        return $this;
-    }
-
-    function getIelEnabled(): bool
-    {
-        return $this->ielEnabled;
-    }
-
-    function setIelEnabled(bool $ielEnabled): self
-    {
-        $this->ielEnabled = $ielEnabled;
-        return $this;
-    }
-
-    function getPedagogicObjectifs(): string
-    {
-        return $this->pedagogicObjectifs;
-    }
-
-    function setPedagogicObjectifs(string $pedagogicObjectifs): self
-    {
-        $this->pedagogicObjectifs = $pedagogicObjectifs;
-        return $this;
-    }
-
-    function getPedagogicContent(): string
-    {
-        return $this->pedagogicContent;
-    }
-
-    function setPedagogicContent(string $pedagogicContent): self
-    {
-        $this->pedagogicContent = $pedagogicContent;
-        return $this;
-    }
-
-    function getAccessCondition(): string
-    {
-        return $this->accessCondition;
-    }
-
-    function setAccessCondition(string $accessCondition): self
-    {
-        $this->accessCondition = $accessCondition;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getOrganization(): App\Entity\Organization\Organization
     {
         return $this->organization;

+ 0 - 102
src/Entity/Message/ReportMessage.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Message;
@@ -24,27 +20,6 @@ class ReportMessage
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    private ?DateTimeInterface $dateSend;
-
-    #[ORM\Column]
-    private mixed $recipientType;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $recipientId;
-
-    #[ORM\Column]
-    private mixed $recipientName;
-
-    #[ORM\Column]
-    private mixed $status;
-
-    #[ORM\Column]
-    private mixed $smsId;
-
-    #[ORM\Column]
-    private mixed $addressEmail;
-
     #[ORM\ManyToOne(targetEntity: AbstractMessage::class, cascade: [], inversedBy: 'reportMessage')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     public mixed $message;
@@ -68,83 +43,6 @@ class ReportMessage
         return $this;
     }
 
-    function getDateSend(): DateTimeInterface
-    {
-        return $this->dateSend;
-    }
-
-    function setDateSend(DateTimeInterface $dateSend): self
-    {
-        $this->dateSend = $dateSend;
-        return $this;
-    }
-
-    function getRecipientType(): mixed
-    {
-        return $this->recipientType;
-    }
-
-    function setRecipientType(mixed $recipientType): self
-    {
-        $this->recipientType = $recipientType;
-        return $this;
-    }
-
-    function getRecipientId(): int
-    {
-        return $this->recipientId;
-    }
-
-    function setRecipientId(int $recipientId): self
-    {
-        $this->recipientId = $recipientId;
-        return $this;
-    }
-
-    function getRecipientName(): mixed
-    {
-        return $this->recipientName;
-    }
-
-    function setRecipientName(mixed $recipientName): self
-    {
-        $this->recipientName = $recipientName;
-        return $this;
-    }
-
-    function getStatus(): mixed
-    {
-        return $this->status;
-    }
-
-    function setStatus(mixed $status): self
-    {
-        $this->status = $status;
-        return $this;
-    }
-
-    function getSmsId(): mixed
-    {
-        return $this->smsId;
-    }
-
-    function setSmsId(mixed $smsId): self
-    {
-        $this->smsId = $smsId;
-        return $this;
-    }
-
-    function getAddressEmail(): mixed
-    {
-        return $this->addressEmail;
-    }
-
-    function setAddressEmail(mixed $addressEmail): self
-    {
-        $this->addressEmail = $addressEmail;
-        return $this;
-    }
-
     function getMessage(): mixed
     {
         return $this->message;

+ 0 - 130
src/Entity/Token/Token.php

@@ -1,9 +1,5 @@
 <?php
 
-/**
- * This file is auto-generated.
- */
-
 declare(strict_types=1);
 
 namespace App\Entity\Token;
@@ -23,33 +19,6 @@ class Token
     #[ORM\GeneratedValue]
     private int $id;
 
-    #[ORM\Column]
-    private mixed $type;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    private ?DateTimeInterface $expiryDate;
-
-    #[ORM\Column]
-    private mixed $token;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    private ?DateTimeInterface $createDate;
-
-    #[ORM\Column(type: 'date', options: ['nullable' => true])]
-    private ?DateTimeInterface $updateDate;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $legacyId;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $createdBy;
-
-    #[ORM\Column(type: 'integer', options: ['nullable' => true])]
-    private int $updatedBy;
-
-    #[ORM\Column(options: ['default' => false])]
-    private bool $draft;
-
     #[ORM\ManyToOne(targetEntity: Access::class, cascade: [], inversedBy: 'tokens')]
     #[ORM\JoinColumn(referencedColumnName: 'id', nullable: false, onDelete: 'SET NULL')]
     private App\Entity\Access\Access $access;
@@ -65,105 +34,6 @@ class Token
         return $this;
     }
 
-    function getType(): mixed
-    {
-        return $this->type;
-    }
-
-    function setType(mixed $type): self
-    {
-        $this->type = $type;
-        return $this;
-    }
-
-    function getExpiryDate(): DateTimeInterface
-    {
-        return $this->expiryDate;
-    }
-
-    function setExpiryDate(DateTimeInterface $expiryDate): self
-    {
-        $this->expiryDate = $expiryDate;
-        return $this;
-    }
-
-    function getToken(): mixed
-    {
-        return $this->token;
-    }
-
-    function setToken(mixed $token): self
-    {
-        $this->token = $token;
-        return $this;
-    }
-
-    function getCreateDate(): DateTimeInterface
-    {
-        return $this->createDate;
-    }
-
-    function setCreateDate(DateTimeInterface $createDate): self
-    {
-        $this->createDate = $createDate;
-        return $this;
-    }
-
-    function getUpdateDate(): DateTimeInterface
-    {
-        return $this->updateDate;
-    }
-
-    function setUpdateDate(DateTimeInterface $updateDate): self
-    {
-        $this->updateDate = $updateDate;
-        return $this;
-    }
-
-    function getLegacyId(): int
-    {
-        return $this->legacyId;
-    }
-
-    function setLegacyId(int $legacyId): self
-    {
-        $this->legacyId = $legacyId;
-        return $this;
-    }
-
-    function getCreatedBy(): int
-    {
-        return $this->createdBy;
-    }
-
-    function setCreatedBy(int $createdBy): self
-    {
-        $this->createdBy = $createdBy;
-        return $this;
-    }
-
-    function getUpdatedBy(): int
-    {
-        return $this->updatedBy;
-    }
-
-    function setUpdatedBy(int $updatedBy): self
-    {
-        $this->updatedBy = $updatedBy;
-        return $this;
-    }
-
-    function getDraft(): bool
-    {
-        return $this->draft;
-    }
-
-    function setDraft(bool $draft): self
-    {
-        $this->draft = $draft;
-        return $this;
-    }
-
     function getAccess(): App\Entity\Access\Access
     {
         return $this->access;