src/Entity/ImportPlanner.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * ImportPlanner
  6.  *
  7.  * @ORM\Table(name="dnsit_import_planner")
  8.  * @ORM\Entity(repositoryClass="App\Repository\ImportPlannerRepository")
  9.  */
  10. class ImportPlanner
  11. {
  12.     /**
  13.      * @var \DateTime|null
  14.      *
  15.      * @ORM\Column(name="created_at", type="datetime", nullable=true)
  16.      */
  17.     private $createdAt;
  18.     /**
  19.      * @var string|null
  20.      *
  21.      * @ORM\Column(name="email", type="string", nullable=true)
  22.      */
  23.     private $email;
  24.     /**
  25.      * @var bool|null
  26.      *
  27.      * @ORM\Column(name="is_processing", type="boolean", nullable=true)
  28.      */
  29.     private $isProcessing;
  30.     /**
  31.      * @var int|null
  32.      *
  33.      * @ORM\Column(name="state", type="integer", nullable=true)
  34.      */
  35.     private $state;
  36.     /**
  37.      * @var int|null
  38.      *
  39.      * @ORM\Column(name="total_products", type="integer", nullable=true)
  40.      */
  41.     private $totalProducts;
  42.     /**
  43.      * @var int
  44.      *
  45.      * @ORM\Column(name="id", type="integer")
  46.      * @ORM\Id
  47.      * @ORM\GeneratedValue(strategy="SEQUENCE")
  48.      * @ORM\SequenceGenerator(sequenceName="dnsit_import_planner_id_seq", allocationSize=1, initialValue=1)
  49.      */
  50.     private $id;
  51.     public function getCreatedAt(): ?\DateTimeInterface
  52.     {
  53.         return $this->createdAt;
  54.     }
  55.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  56.     {
  57.         $this->createdAt $createdAt;
  58.         return $this;
  59.     }
  60.     public function getEmail(): ?string
  61.     {
  62.         return $this->email;
  63.     }
  64.     public function setEmail(?string $email): self
  65.     {
  66.         $this->email $email;
  67.         return $this;
  68.     }
  69.     public function getIsProcessing(): ?bool
  70.     {
  71.         return $this->isProcessing;
  72.     }
  73.     public function setIsProcessing(?bool $isProcessing): self
  74.     {
  75.         $this->isProcessing $isProcessing;
  76.         return $this;
  77.     }
  78.     public function getState(): ?int
  79.     {
  80.         return $this->state;
  81.     }
  82.     public function setState(?int $state): self
  83.     {
  84.         $this->state $state;
  85.         return $this;
  86.     }
  87.     public function getTotalProducts(): ?int
  88.     {
  89.         return $this->totalProducts;
  90.     }
  91.     public function setTotalProducts(?int $totalProducts): self
  92.     {
  93.         $this->totalProducts $totalProducts;
  94.         return $this;
  95.     }
  96.     public function getId(): ?int
  97.     {
  98.         return $this->id;
  99.     }
  100. }