src/Entity/Fielpet/View/EventosvideollamadaView.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. * EventosvideollamadaView
  7. *
  8. * @ORM\Table(name="EventosVideollamada", uniqueConstraints={@ORM\UniqueConstraint(name="EventosVideollamada_uuid_key", columns={"uuid"})}, indexes={@ORM\Index(name="IDX_B2A2978AFB34125D", columns={"eventoId"}), @ORM\Index(name="IDX_B2A2978A8D71EDF6", columns={"operadorId"})})
  9. * @ORM\Entity
  10. */
  11. class EventosvideollamadaView
  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="EventosVideollamada_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string|null
  24. *
  25. * @ORM\Column(name="infoVeterinario", type="string", length=255, nullable=true)
  26. */
  27. private $infoveterinario;
  28. /**
  29. * @var string|null
  30. *
  31. * @ORM\Column(name="uuid", type="string", length=255, nullable=true)
  32. */
  33. private $uuid;
  34. /**
  35. * @var string|null
  36. *
  37. * @ORM\Column(name="expediente", type="string", length=255, nullable=true)
  38. */
  39. private $expediente;
  40. /**
  41. * @var string|null
  42. *
  43. * @ORM\Column(name="celCliente", type="string", length=255, nullable=true)
  44. */
  45. private $celcliente;
  46. /**
  47. * @var bool|null
  48. *
  49. * @ORM\Column(name="vetFormCompleted", type="boolean", nullable=true)
  50. */
  51. private $vetformcompleted = false;
  52. /**
  53. * @var \DateTime
  54. *
  55. * @ORM\Column(name="createdAt", type="custom_datetimetz", nullable=false)
  56. */
  57. private $createdat;
  58. /**
  59. * @var \DateTime
  60. *
  61. * @ORM\Column(name="updatedAt", type="custom_datetimetz", nullable=false)
  62. */
  63. private $updatedat;
  64. /**
  65. * @var \EventosView
  66. *
  67. * @ORM\ManyToOne(targetEntity="EventosView")
  68. * @ORM\JoinColumns({
  69. * @ORM\JoinColumn(name="eventoId", referencedColumnName="id")
  70. * })
  71. */
  72. private $eventoid;
  73. /**
  74. * @var \UsuariosView
  75. *
  76. * @ORM\ManyToOne(targetEntity="UsuariosView")
  77. * @ORM\JoinColumns({
  78. * @ORM\JoinColumn(name="operadorId", referencedColumnName="id")
  79. * })
  80. */
  81. private $operadorid;
  82. public function getId(): ?int
  83. {
  84. return $this->id;
  85. }
  86. public function getInfoveterinario(): ?string
  87. {
  88. return $this->infoveterinario;
  89. }
  90. public function setInfoveterinario(?string $infoveterinario): self
  91. {
  92. $this->infoveterinario = $infoveterinario;
  93. return $this;
  94. }
  95. public function getUuid(): ?string
  96. {
  97. return $this->uuid;
  98. }
  99. public function setUuid(?string $uuid): self
  100. {
  101. $this->uuid = $uuid;
  102. return $this;
  103. }
  104. public function getExpediente(): ?string
  105. {
  106. return $this->expediente;
  107. }
  108. public function setExpediente(?string $expediente): self
  109. {
  110. $this->expediente = $expediente;
  111. return $this;
  112. }
  113. public function getCelcliente(): ?string
  114. {
  115. return $this->celcliente;
  116. }
  117. public function setCelcliente(?string $celcliente): self
  118. {
  119. $this->celcliente = $celcliente;
  120. return $this;
  121. }
  122. public function getVetformcompleted(): ?bool
  123. {
  124. return $this->vetformcompleted;
  125. }
  126. public function setVetformcompleted(?bool $vetformcompleted): self
  127. {
  128. $this->vetformcompleted = $vetformcompleted;
  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 getEventoid(): ?EventosView
  150. {
  151. return $this->eventoid;
  152. }
  153. public function setEventoid(?EventosView $eventoid): self
  154. {
  155. $this->eventoid = $eventoid;
  156. return $this;
  157. }
  158. public function getOperadorid(): ?UsuariosView
  159. {
  160. return $this->operadorid;
  161. }
  162. public function setOperadorid(?UsuariosView $operadorid): self
  163. {
  164. $this->operadorid = $operadorid;
  165. return $this;
  166. }
  167. public function isVetformcompleted(): ?bool
  168. {
  169. return $this->vetformcompleted;
  170. }
  171. }