src/Entity/Fielpet/View/IndicacionesnfView.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Fielpet\View;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * Indicacionesnf
  7. *
  8. * @ORM\Table(name="IndicacionesNF")
  9. * @ORM\Entity
  10. */
  11. class IndicacionesnfView
  12. {
  13. /**
  14. * @var int
  15. *
  16. * @ORM\Column(name="id", type="integer", nullable=false)
  17. * @ORM\Id
  18. * @ORM\GeneratedValue(strategy="SEQUENCE")
  19. * @ORM\SequenceGenerator(sequenceName="IndicacionesNF_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string|null
  24. *
  25. * @ORM\Column(name="tipo_indicacionNF", type="string", length=255, nullable=true)
  26. */
  27. private $tipoIndicacionnf;
  28. /**
  29. * @var \DateTime
  30. *
  31. * @ORM\Column(name="createdAt", type="custom_datetimetz", nullable=false)
  32. */
  33. private $createdat;
  34. /**
  35. * @var \DateTime
  36. *
  37. * @ORM\Column(name="updatedAt", type="custom_datetimetz", nullable=false)
  38. */
  39. private $updatedat;
  40. public function getId(): ?int
  41. {
  42. return $this->id;
  43. }
  44. public function getTipoIndicacionnf(): ?string
  45. {
  46. return $this->tipoIndicacionnf;
  47. }
  48. public function setTipoIndicacionnf(?string $tipoIndicacionnf): self
  49. {
  50. $this->tipoIndicacionnf = $tipoIndicacionnf;
  51. return $this;
  52. }
  53. public function getCreatedat(): ?\DateTimeInterface
  54. {
  55. return $this->createdat;
  56. }
  57. public function setCreatedat(\DateTimeInterface $createdat): self
  58. {
  59. $this->createdat = $createdat;
  60. return $this;
  61. }
  62. public function getUpdatedat(): ?\DateTimeInterface
  63. {
  64. return $this->updatedat;
  65. }
  66. public function setUpdatedat(\DateTimeInterface $updatedat): self
  67. {
  68. $this->updatedat = $updatedat;
  69. return $this;
  70. }
  71. }