src/Entity/Fielpet/View/ArchivoadjuntoerrorView.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. * ArchivoadjuntoerrorView
  7. *
  8. * @ORM\Table(name="ArchivoAdjuntoError", indexes={@ORM\Index(name="IDX_A0F172D24F531111", columns={"vetFormId"}), @ORM\Index(name="IDX_A0F172D252066F5", columns={"siniestroId"}), @ORM\Index(name="IDX_A0F172D2356F5F45", columns={"consultaId"}), @ORM\Index(name="IDX_A0F172D27110ADCD", columns={"estudioMascotaId"}), @ORM\Index(name="IDX_A0F172D265B1D2F9", columns={"internacionMascotaId"}), @ORM\Index(name="IDX_A0F172D2E48CB000", columns={"practicaMascotaId"}), @ORM\Index(name="IDX_A0F172D29F60D4D", columns={"cirugiaMascotaId"})})
  9. * @ORM\Entity
  10. */
  11. class ArchivoadjuntoerrorView
  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="ArchivoAdjuntoError_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string
  24. *
  25. * @ORM\Column(name="tipo", type="string", length=255, nullable=false)
  26. */
  27. private $tipo;
  28. /**
  29. * @var string
  30. *
  31. * @ORM\Column(name="estado", type="string", length=255, nullable=false)
  32. */
  33. private $estado;
  34. /**
  35. * @var \DateTime
  36. *
  37. * @ORM\Column(name="createdAt", type="custom_datetimetz", nullable=false)
  38. */
  39. private $createdat;
  40. /**
  41. * @var \DateTime
  42. *
  43. * @ORM\Column(name="updatedAt", type="custom_datetimetz", nullable=false)
  44. */
  45. private $updatedat;
  46. /**
  47. * @var \VetFormView
  48. *
  49. * @ORM\ManyToOne(targetEntity="VetFormView")
  50. * @ORM\JoinColumns({
  51. * @ORM\JoinColumn(name="vetFormId", referencedColumnName="id")
  52. * })
  53. */
  54. private $vetformid;
  55. /**
  56. * @var \SiniestroView
  57. *
  58. * @ORM\ManyToOne(targetEntity="SiniestroView")
  59. * @ORM\JoinColumns({
  60. * @ORM\JoinColumn(name="siniestroId", referencedColumnName="id")
  61. * })
  62. */
  63. private $siniestroid;
  64. /**
  65. * @var \ConsultaView
  66. *
  67. * @ORM\ManyToOne(targetEntity="ConsultaView")
  68. * @ORM\JoinColumns({
  69. * @ORM\JoinColumn(name="consultaId", referencedColumnName="id")
  70. * })
  71. */
  72. private $consultaid;
  73. /**
  74. * @var \EstudiomascotaView
  75. *
  76. * @ORM\ManyToOne(targetEntity="EstudiomascotaView")
  77. * @ORM\JoinColumns({
  78. * @ORM\JoinColumn(name="estudioMascotaId", referencedColumnName="id")
  79. * })
  80. */
  81. private $estudiomascotaid;
  82. /**
  83. * @var \InternacionmascotaView
  84. *
  85. * @ORM\ManyToOne(targetEntity="InternacionmascotaView")
  86. * @ORM\JoinColumns({
  87. * @ORM\JoinColumn(name="internacionMascotaId", referencedColumnName="id")
  88. * })
  89. */
  90. private $internacionmascotaid;
  91. /**
  92. * @var \PracticamascotaView
  93. *
  94. * @ORM\ManyToOne(targetEntity="PracticamascotaView")
  95. * @ORM\JoinColumns({
  96. * @ORM\JoinColumn(name="practicaMascotaId", referencedColumnName="id")
  97. * })
  98. */
  99. private $practicamascotaid;
  100. /**
  101. * @var \CirugiamascotaView
  102. *
  103. * @ORM\ManyToOne(targetEntity="CirugiamascotaView")
  104. * @ORM\JoinColumns({
  105. * @ORM\JoinColumn(name="cirugiaMascotaId", referencedColumnName="id")
  106. * })
  107. */
  108. private $cirugiamascotaid;
  109. public function getId(): ?int
  110. {
  111. return $this->id;
  112. }
  113. public function getTipo(): ?string
  114. {
  115. return $this->tipo;
  116. }
  117. public function setTipo(string $tipo): self
  118. {
  119. $this->tipo = $tipo;
  120. return $this;
  121. }
  122. public function getEstado(): ?string
  123. {
  124. return $this->estado;
  125. }
  126. public function setEstado(string $estado): self
  127. {
  128. $this->estado = $estado;
  129. return $this;
  130. }
  131. public function getCreatedat(): ?\DateTimeInterface
  132. {
  133. return $this->createdat;
  134. }
  135. public function setCreatedat(\DateTimeInterface $createdat): self
  136. {
  137. $this->createdat = $createdat;
  138. return $this;
  139. }
  140. public function getUpdatedat(): ?\DateTimeInterface
  141. {
  142. return $this->updatedat;
  143. }
  144. public function setUpdatedat(\DateTimeInterface $updatedat): self
  145. {
  146. $this->updatedat = $updatedat;
  147. return $this;
  148. }
  149. public function getVetformid(): ?VetFormView
  150. {
  151. return $this->vetformid;
  152. }
  153. public function setVetformid(?VetFormView $vetformid): self
  154. {
  155. $this->vetformid = $vetformid;
  156. return $this;
  157. }
  158. public function getSiniestroid(): ?SiniestroView
  159. {
  160. return $this->siniestroid;
  161. }
  162. public function setSiniestroid(?SiniestroView $siniestroid): self
  163. {
  164. $this->siniestroid = $siniestroid;
  165. return $this;
  166. }
  167. public function getConsultaid(): ?ConsultaView
  168. {
  169. return $this->consultaid;
  170. }
  171. public function setConsultaid(?ConsultaView $consultaid): self
  172. {
  173. $this->consultaid = $consultaid;
  174. return $this;
  175. }
  176. public function getEstudiomascotaid(): ?EstudiomascotaView
  177. {
  178. return $this->estudiomascotaid;
  179. }
  180. public function setEstudiomascotaid(?EstudiomascotaView $estudiomascotaid): self
  181. {
  182. $this->estudiomascotaid = $estudiomascotaid;
  183. return $this;
  184. }
  185. public function getInternacionmascotaid(): ?InternacionmascotaView
  186. {
  187. return $this->internacionmascotaid;
  188. }
  189. public function setInternacionmascotaid(?InternacionmascotaView $internacionmascotaid): self
  190. {
  191. $this->internacionmascotaid = $internacionmascotaid;
  192. return $this;
  193. }
  194. public function getPracticamascotaid(): ?PracticaMascotaView
  195. {
  196. return $this->practicamascotaid;
  197. }
  198. public function setPracticamascotaid(?PracticaMascotaView $practicamascotaid): self
  199. {
  200. $this->practicamascotaid = $practicamascotaid;
  201. return $this;
  202. }
  203. public function getCirugiamascotaid(): ?CirugiamascotaView
  204. {
  205. return $this->cirugiamascotaid;
  206. }
  207. public function setCirugiamascotaid(?CirugiamascotaView $cirugiamascotaid): self
  208. {
  209. $this->cirugiamascotaid = $cirugiamascotaid;
  210. return $this;
  211. }
  212. }