src/Entity/Fielpet/View/VetformlinkView.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. * VetformlinkView
  7. *
  8. * @ORM\Table(name="VetFormLink")
  9. * @ORM\Entity
  10. */
  11. class VetformlinkView
  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="VetFormLink_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string|null
  24. *
  25. * @ORM\Column(name="vetForm", type="string", length=255, nullable=true)
  26. */
  27. private $vetform;
  28. /**
  29. * @var string|null
  30. *
  31. * @ORM\Column(name="siniestro", type="string", length=255, nullable=true)
  32. */
  33. private $siniestro;
  34. /**
  35. * @var string|null
  36. *
  37. * @ORM\Column(name="subVetForms", type="string", nullable=true)
  38. */
  39. private $subvetforms;
  40. /**
  41. * @var \DateTime
  42. *
  43. * @ORM\Column(name="createdAt", type="custom_datetimetz", nullable=false)
  44. */
  45. private $createdat;
  46. /**
  47. * @var \DateTime
  48. *
  49. * @ORM\Column(name="updatedAt", type="custom_datetimetz", nullable=false)
  50. */
  51. private $updatedat;
  52. public function getId(): ?int
  53. {
  54. return $this->id;
  55. }
  56. public function getVetform(): ?string
  57. {
  58. return $this->vetform;
  59. }
  60. public function setVetform(?string $vetform): self
  61. {
  62. $this->vetform = $vetform;
  63. return $this;
  64. }
  65. public function getSiniestro(): ?string
  66. {
  67. return $this->siniestro;
  68. }
  69. public function setSiniestro(?string $siniestro): self
  70. {
  71. $this->siniestro = $siniestro;
  72. return $this;
  73. }
  74. public function getSubvetforms(): ?string
  75. {
  76. return $this->subvetforms;
  77. }
  78. public function setSubvetforms(?string $subvetforms): self
  79. {
  80. $this->subvetforms = $subvetforms;
  81. return $this;
  82. }
  83. public function getCreatedat(): ?\DateTimeInterface
  84. {
  85. return $this->createdat;
  86. }
  87. public function setCreatedat(\DateTimeInterface $createdat): self
  88. {
  89. $this->createdat = $createdat;
  90. return $this;
  91. }
  92. public function getUpdatedat(): ?\DateTimeInterface
  93. {
  94. return $this->updatedat;
  95. }
  96. public function setUpdatedat(\DateTimeInterface $updatedat): self
  97. {
  98. $this->updatedat = $updatedat;
  99. return $this;
  100. }
  101. }