src/Entity/Fielpet/View/MovimientosiniestrobbvaView.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. * MovimientosiniestrobbvaView
  7. *
  8. * @ORM\Table(name="MovimientoSiniestroBbva", indexes={@ORM\Index(name="IDX_968015A952066F5", columns={"siniestroId"}), @ORM\Index(name="IDX_968015A9DBB5291", columns={"movimientoSiniestroId"}), @ORM\Index(name="IDX_968015A93E2DB862", columns={"bbvaFileId"})})
  9. * @ORM\Entity
  10. */
  11. class MovimientosiniestrobbvaView
  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="MovimientoSiniestroBbva_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string|null
  24. *
  25. * @ORM\Column(name="fecha", type="string", length=255, nullable=true)
  26. */
  27. private $fecha;
  28. /**
  29. * @var int|null
  30. *
  31. * @ORM\Column(name="nro_orden", type="integer", nullable=true)
  32. */
  33. private $nroOrden;
  34. /**
  35. * @var string
  36. *
  37. * @ORM\Column(name="linea", type="text", nullable=false)
  38. */
  39. private $linea;
  40. /**
  41. * @var string|null
  42. *
  43. * @ORM\Column(name="type_file", type="string", length=255, nullable=true)
  44. */
  45. private $typeFile;
  46. /**
  47. * @var \DateTime
  48. *
  49. * @ORM\Column(name="createdAt", type="custom_datetimetz", nullable=false)
  50. */
  51. private $createdat;
  52. /**
  53. * @var \DateTime
  54. *
  55. * @ORM\Column(name="updatedAt", type="custom_datetimetz", nullable=false)
  56. */
  57. private $updatedat;
  58. /**
  59. * @var \SiniestroView
  60. *
  61. * @ORM\ManyToOne(targetEntity="SiniestroView")
  62. * @ORM\JoinColumns({
  63. * @ORM\JoinColumn(name="siniestroId", referencedColumnName="id")
  64. * })
  65. */
  66. private $siniestroid;
  67. /**
  68. * @var \MovimientosiniestroView
  69. *
  70. * @ORM\ManyToOne(targetEntity="MovimientosiniestroView")
  71. * @ORM\JoinColumns({
  72. * @ORM\JoinColumn(name="movimientoSiniestroId", referencedColumnName="id")
  73. * })
  74. */
  75. private $movimientosiniestroid;
  76. /**
  77. * @var \AaBbvafileView
  78. *
  79. * @ORM\ManyToOne(targetEntity="AaBbvafileView")
  80. * @ORM\JoinColumns({
  81. * @ORM\JoinColumn(name="bbvaFileId", referencedColumnName="id")
  82. * })
  83. */
  84. private $bbvafileid;
  85. public function getId(): ?int
  86. {
  87. return $this->id;
  88. }
  89. public function getFecha(): ?string
  90. {
  91. return $this->fecha;
  92. }
  93. public function setFecha(?string $fecha): self
  94. {
  95. $this->fecha = $fecha;
  96. return $this;
  97. }
  98. public function getNroOrden(): ?int
  99. {
  100. return $this->nroOrden;
  101. }
  102. public function setNroOrden(?int $nroOrden): self
  103. {
  104. $this->nroOrden = $nroOrden;
  105. return $this;
  106. }
  107. public function getLinea(): ?string
  108. {
  109. return $this->linea;
  110. }
  111. public function setLinea(string $linea): self
  112. {
  113. $this->linea = $linea;
  114. return $this;
  115. }
  116. public function getTypeFile(): ?string
  117. {
  118. return $this->typeFile;
  119. }
  120. public function setTypeFile(?string $typeFile): self
  121. {
  122. $this->typeFile = $typeFile;
  123. return $this;
  124. }
  125. public function getCreatedat(): ?\DateTimeInterface
  126. {
  127. return $this->createdat;
  128. }
  129. public function setCreatedat(\DateTimeInterface $createdat): self
  130. {
  131. $this->createdat = $createdat;
  132. return $this;
  133. }
  134. public function getUpdatedat(): ?\DateTimeInterface
  135. {
  136. return $this->updatedat;
  137. }
  138. public function setUpdatedat(\DateTimeInterface $updatedat): self
  139. {
  140. $this->updatedat = $updatedat;
  141. return $this;
  142. }
  143. public function getSiniestroid(): ?SiniestroView
  144. {
  145. return $this->siniestroid;
  146. }
  147. public function setSiniestroid(?SiniestroView $siniestroid): self
  148. {
  149. $this->siniestroid = $siniestroid;
  150. return $this;
  151. }
  152. public function getMovimientosiniestroid(): ?MovimientosiniestroView
  153. {
  154. return $this->movimientosiniestroid;
  155. }
  156. public function setMovimientosiniestroid(?MovimientosiniestroView $movimientosiniestroid): self
  157. {
  158. $this->movimientosiniestroid = $movimientosiniestroid;
  159. return $this;
  160. }
  161. public function getBbvafileid(): ?AaBbvafileView
  162. {
  163. return $this->bbvafileid;
  164. }
  165. public function setBbvafileid(?AaBbvafileView $bbvafileid): self
  166. {
  167. $this->bbvafileid = $bbvafileid;
  168. return $this;
  169. }
  170. }