src/Entity/CustomerContractSettings.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerContractSettingsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCustomerContractSettingsRepository::class)]
  6. class CustomerContractSettings
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length10nullabletrue)]
  13.     private ?string $token null;
  14.     #[ORM\Column(length10nullabletrue)]
  15.     private ?string $freeField null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?int $nextValue null;
  18.     #[ORM\Column]
  19.     private ?int $minLength null;
  20.     #[ORM\Column]
  21.     private ?bool $notifyContractEnd null;
  22.     #[ORM\Column]
  23.     private ?int $notifyContractEndInWeeks null;
  24.     #[ORM\Column]
  25.     private ?int $extendingPeriodInMonth null;
  26.     #[ORM\Column]
  27.     private ?int $cancelingPeriodInMonth null;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getToken(): ?string
  33.     {
  34.         return $this->token;
  35.     }
  36.     public function setToken(?string $token): self
  37.     {
  38.         $this->token $token;
  39.         return $this;
  40.     }
  41.     public function getFreeField(): ?string
  42.     {
  43.         return $this->freeField;
  44.     }
  45.     public function setFreeField(?string $freeField): self
  46.     {
  47.         $this->freeField $freeField;
  48.         return $this;
  49.     }
  50.     public function getNextValue(): ?int
  51.     {
  52.         return $this->nextValue;
  53.     }
  54.     public function setNextValue(?int $nextValue): self
  55.     {
  56.         $this->nextValue $nextValue;
  57.         return $this;
  58.     }
  59.     public function getMinLength(): ?int
  60.     {
  61.         return $this->minLength;
  62.     }
  63.     public function setMinLength(int $minLength): self
  64.     {
  65.         $this->minLength $minLength;
  66.         return $this;
  67.     }
  68.     public function isNotifyContractEnd(): ?bool
  69.     {
  70.         return $this->notifyContractEnd;
  71.     }
  72.     public function setNotifyContractEnd(bool $notifyContractEnd): self
  73.     {
  74.         $this->notifyContractEnd $notifyContractEnd;
  75.         return $this;
  76.     }
  77.     public function getNotifyContractEndInWeeks(): ?int
  78.     {
  79.         return $this->notifyContractEndInWeeks;
  80.     }
  81.     public function setNotifyContractEndInWeeks(int $notifyContractEndInWeeks): self
  82.     {
  83.         $this->notifyContractEndInWeeks $notifyContractEndInWeeks;
  84.         return $this;
  85.     }
  86.     public function getExtendingPeriodInMonth(): ?int
  87.     {
  88.         return $this->extendingPeriodInMonth;
  89.     }
  90.     public function setExtendingPeriodInMonth(int $extendingPeriodInMonth): self
  91.     {
  92.         $this->extendingPeriodInMonth $extendingPeriodInMonth;
  93.         return $this;
  94.     }
  95.     public function getCancelingPeriodInMonth(): ?int
  96.     {
  97.         return $this->cancelingPeriodInMonth;
  98.     }
  99.     public function setCancelingPeriodInMonth(int $cancelingPeriodInMonth): self
  100.     {
  101.         $this->cancelingPeriodInMonth $cancelingPeriodInMonth;
  102.         return $this;
  103.     }
  104. }