src/Entity/ExportExcel.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\ExportExcelRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassExportExcelRepository::class)]
  8. #[ApiResource]
  9. class ExportExcel
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $generatedFilePath null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $entityNameSpace null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $createdAt null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private array $fields = [];
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?bool $excludeFields null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private array $findBy = [];
  27.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  28.     private ?string $description null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private array $orderBy = [];
  31.     public function __construct()
  32.     {
  33.         $this->createdAt = new \DateTime();
  34.     }
  35.     public function getId(): ?int
  36.     {
  37.         return $this->id;
  38.     }
  39.     public function getGeneratedFilePath(): ?string
  40.     {
  41.         return $this->generatedFilePath;
  42.     }
  43.     public function setGeneratedFilePath(string $generatedFilePath): self
  44.     {
  45.         $this->generatedFilePath $generatedFilePath;
  46.         return $this;
  47.     }
  48.     public function getEntityNameSpace(): ?string
  49.     {
  50.         return $this->entityNameSpace;
  51.     }
  52.     public function setEntityNameSpace(string $entityNameSpace): self
  53.     {
  54.         $this->entityNameSpace $entityNameSpace;
  55.         return $this;
  56.     }
  57.     public function getCreatedAt(): ?\DateTimeInterface
  58.     {
  59.         return $this->createdAt;
  60.     }
  61.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  62.     {
  63.         $this->createdAt $createdAt;
  64.         return $this;
  65.     }
  66.     public function getFields(): array
  67.     {
  68.         return $this->fields;
  69.     }
  70.     public function setFields(?array $fields): self
  71.     {
  72.         $this->fields $fields;
  73.         return $this;
  74.     }
  75.     public function isExcludeFields(): ?bool
  76.     {
  77.         return $this->excludeFields;
  78.     }
  79.     public function setExcludeFields(?bool $excludeFields): self
  80.     {
  81.         $this->excludeFields $excludeFields;
  82.         return $this;
  83.     }
  84.     /**
  85.      * Get the value of findBy
  86.      */ 
  87.     public function getFindBy()
  88.     {
  89.         return $this->findBy;
  90.     }
  91.     /**
  92.      * Set the value of findBy
  93.      *
  94.      * @return  self
  95.      */ 
  96.     public function setFindBy($findBy)
  97.     {
  98.         $this->findBy $findBy;
  99.         return $this;
  100.     }
  101.     public function getDescription(): ?string
  102.     {
  103.         return $this->description;
  104.     }
  105.     public function setDescription(?string $description): self
  106.     {
  107.         $this->description $description;
  108.         return $this;
  109.     }
  110.     public function getOrderBy(): array
  111.     {
  112.         return $this->orderBy;
  113.     }
  114.     public function setOrderBy(?array $orderBy): self
  115.     {
  116.         $this->orderBy $orderBy;
  117.         return $this;
  118.     }
  119. }