src/Entity/RenunciaReceita.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RenunciaReceitaRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassRenunciaReceitaRepository::class)]
  7. class RenunciaReceita
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $ano null;
  15.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  16.     private ?\DateTimeInterface $dataInicial null;
  17.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  18.     private ?\DateTimeInterface $dataFinal null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $beneficiario null;
  21.     #[ORM\Column(length30nullabletrue)]
  22.     private ?string $tipo null;
  23.     #[ORM\Column(length1000nullabletrue)]
  24.     private ?string $legislacao null;
  25.     #[ORM\Column(length1000nullabletrue)]
  26.     private ?string $motivo null;
  27.     #[ORM\Column(length1000nullabletrue)]
  28.     private ?string $relatorio null;
  29.     #[ORM\Column(typeTypes::DECIMALprecision14scale2nullabletrue)]
  30.     private ?string $valor null;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getAno(): ?string
  36.     {
  37.         return $this->ano;
  38.     }
  39.     public function setAno(?string $ano): self
  40.     {
  41.         $this->ano $ano;
  42.         return $this;
  43.     }
  44.     public function getDataInicial(): ?\DateTimeInterface
  45.     {
  46.         return $this->dataInicial;
  47.     }
  48.     public function setDataInicial(?\DateTimeInterface $dataInicial): self
  49.     {
  50.         $this->dataInicial $dataInicial;
  51.         return $this;
  52.     }
  53.     public function getDataFinal(): ?\DateTimeInterface
  54.     {
  55.         return $this->dataFinal;
  56.     }
  57.     public function setDataFinal(?\DateTimeInterface $dataFinal): self
  58.     {
  59.         $this->dataFinal $dataFinal;
  60.         return $this;
  61.     }
  62.     public function getBeneficiario(): ?string
  63.     {
  64.         return $this->beneficiario;
  65.     }
  66.     public function setBeneficiario(?string $beneficiario): self
  67.     {
  68.         $this->beneficiario $beneficiario;
  69.         return $this;
  70.     }
  71.     public function getTipo(): ?string
  72.     {
  73.         return $this->tipo;
  74.     }
  75.     public function setTipo(?string $tipo): self
  76.     {
  77.         $this->tipo $tipo;
  78.         return $this;
  79.     }
  80.     public function getLegislacao(): ?string
  81.     {
  82.         return $this->legislacao;
  83.     }
  84.     public function setLegislacao(?string $legislacao): self
  85.     {
  86.         $this->legislacao $legislacao;
  87.         return $this;
  88.     }
  89.     public function getMotivo(): ?string
  90.     {
  91.         return $this->motivo;
  92.     }
  93.     public function setMotivo(?string $motivo): self
  94.     {
  95.         $this->motivo $motivo;
  96.         return $this;
  97.     }
  98.     public function getRelatorio(): ?string
  99.     {
  100.         return $this->relatorio;
  101.     }
  102.     public function setRelatorio(?string $relatorio): self
  103.     {
  104.         $this->relatorio $relatorio;
  105.         return $this;
  106.     }
  107.     public function getValor(): ?string
  108.     {
  109.         return $this->valor;
  110.     }
  111.     public function setValor(?string $valor): self
  112.     {
  113.         $this->valor $valor;
  114.         return $this;
  115.     }
  116. }