src/Entity/Fielpet/View/MensajeswhatsappView.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. * MensajeswhatsappView
  7. *
  8. * @ORM\Table(name="MensajesWhatsapp")
  9. * @ORM\Entity
  10. */
  11. class MensajeswhatsappView
  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="MensajesWhatsapp_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string|null
  24. *
  25. * @ORM\Column(name="mensaje", type="string", length=255, nullable=true)
  26. */
  27. private $mensaje;
  28. /**
  29. * @var string|null
  30. *
  31. * @ORM\Column(name="telefonoRemitente", type="string", length=255, nullable=true)
  32. */
  33. private $telefonoremitente;
  34. /**
  35. * @var string|null
  36. *
  37. * @ORM\Column(name="perfilUsuario", type="string", length=255, nullable=true)
  38. */
  39. private $perfilusuario;
  40. /**
  41. * @var string|null
  42. *
  43. * @ORM\Column(name="usuarioWAID", type="string", length=255, nullable=true)
  44. */
  45. private $usuariowaid;
  46. /**
  47. * @var \DateTime|null
  48. *
  49. * @ORM\Column(name="fecha", type="custom_datetimetz", nullable=true)
  50. */
  51. private $fecha;
  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. public function getId(): ?int
  65. {
  66. return $this->id;
  67. }
  68. public function getMensaje(): ?string
  69. {
  70. return $this->mensaje;
  71. }
  72. public function setMensaje(?string $mensaje): self
  73. {
  74. $this->mensaje = $mensaje;
  75. return $this;
  76. }
  77. public function getTelefonoremitente(): ?string
  78. {
  79. return $this->telefonoremitente;
  80. }
  81. public function setTelefonoremitente(?string $telefonoremitente): self
  82. {
  83. $this->telefonoremitente = $telefonoremitente;
  84. return $this;
  85. }
  86. public function getPerfilusuario(): ?string
  87. {
  88. return $this->perfilusuario;
  89. }
  90. public function setPerfilusuario(?string $perfilusuario): self
  91. {
  92. $this->perfilusuario = $perfilusuario;
  93. return $this;
  94. }
  95. public function getUsuariowaid(): ?string
  96. {
  97. return $this->usuariowaid;
  98. }
  99. public function setUsuariowaid(?string $usuariowaid): self
  100. {
  101. $this->usuariowaid = $usuariowaid;
  102. return $this;
  103. }
  104. public function getFecha(): ?\DateTimeInterface
  105. {
  106. return $this->fecha;
  107. }
  108. public function setFecha(?\DateTimeInterface $fecha): self
  109. {
  110. $this->fecha = $fecha;
  111. return $this;
  112. }
  113. public function getCreatedat(): ?\DateTimeInterface
  114. {
  115. return $this->createdat;
  116. }
  117. public function setCreatedat(\DateTimeInterface $createdat): self
  118. {
  119. $this->createdat = $createdat;
  120. return $this;
  121. }
  122. public function getUpdatedat(): ?\DateTimeInterface
  123. {
  124. return $this->updatedat;
  125. }
  126. public function setUpdatedat(\DateTimeInterface $updatedat): self
  127. {
  128. $this->updatedat = $updatedat;
  129. return $this;
  130. }
  131. }