src/Entity/CustomerConfiguration.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerConfigurationRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassCustomerConfigurationRepository::class)]
  7. class CustomerConfiguration
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $host null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?bool $test null;
  17.     #[ORM\Column]
  18.     private ?bool $active null;
  19.     #[ORM\Column]
  20.     private ?bool $contributionAllow false;
  21.     #[ORM\Column]
  22.     private ?bool $contributionActive false;
  23.     #[ORM\Column]
  24.     private ?float $contributionPrice 0;
  25.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  26.     private ?\DateTimeInterface $contractStart null;
  27.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  28.     private ?\DateTimeInterface $contractEnd null;
  29.     #[ORM\Column(length255)]
  30.     private ?string $homedir;
  31.     #[ORM\Column(length20)]
  32.     private ?float $basicPrice null;
  33.     #[ORM\Column(length20)]
  34.     private ?float $areaBasicPrice null;
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getHost(): ?string
  40.     {
  41.         return $this->host;
  42.     }
  43.     public function setHost(string $host): self
  44.     {
  45.         $this->host $host;
  46.         return $this;
  47.     }
  48.     public function isTest(): ?bool
  49.     {
  50.         return $this->test;
  51.     }
  52.     public function setTest(?bool $test): self
  53.     {
  54.         $this->test $test;
  55.         return $this;
  56.     }
  57.     public function isActive(): ?bool
  58.     {
  59.         return $this->active;
  60.     }
  61.     public function setActive(bool $active): self
  62.     {
  63.         $this->active $active;
  64.         return $this;
  65.     }
  66.     public function getContractStart(): ?\DateTimeInterface
  67.     {
  68.         return $this->contractStart;
  69.     }
  70.     public function setContractStart(\DateTimeInterface $contractStart): self
  71.     {
  72.         $this->contractStart $contractStart;
  73.         return $this;
  74.     }
  75.     public function getContractEnd(): ?\DateTimeInterface
  76.     {
  77.         return $this->contractEnd;
  78.     }
  79.     public function setContractEnd(\DateTimeInterface $contractEnd): self
  80.     {
  81.         $this->contractEnd $contractEnd;
  82.         return $this;
  83.     }
  84.     public function getHomedir(): ?string
  85.     {
  86.         return $this->homedir;
  87.     }
  88.     public function setHomedir(string $homedir): self
  89.     {
  90.         $this->homedir $homedir;
  91.         return $this;
  92.     }
  93.     public function isContributionAllow(): ?bool
  94.     {
  95.         return $this->contributionAllow;
  96.     }
  97.     public function setContributionAllow(bool $contributionAllow): self
  98.     {
  99.         $this->contributionAllow $contributionAllow;
  100.         return $this;
  101.     }
  102.     public function isContributionActive(): ?bool
  103.     {
  104.         return $this->contributionActive;
  105.     }
  106.     public function setContributionActive(bool $contributionActive): self
  107.     {
  108.         $this->contributionActive $contributionActive;
  109.         return $this;
  110.     }
  111.     public function getContributionPrice(): ?float
  112.     {
  113.         return $this->contributionPrice;
  114.     }
  115.     public function setContributionPrice(float $contributionPrice): self
  116.     {
  117.         $this->contributionPrice $contributionPrice;
  118.         return $this;
  119.     }
  120.     public function getBasicPrice(): ?float
  121.     {
  122.         return $this->basicPrice;
  123.     }
  124.     public function setBasicPrice(float $basicPrice): self
  125.     {
  126.         $this->basicPrice $basicPrice;
  127.         return $this;
  128.     }
  129.     public function getAreaBasicPrice(): ?float
  130.     {
  131.         return $this->areaBasicPrice;
  132.     }
  133.     public function setAreaBasicPrice(float $areaBasicPrice): self
  134.     {
  135.         $this->areaBasicPrice $areaBasicPrice;
  136.         return $this;
  137.     }
  138. }