src/Entity/Fielpet/View/ActualizacionsolicituditemView.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. * ActualizacionsolicituditemView
  7. *
  8. * @ORM\Table(name="ActualizacionSolicitudItem", indexes={@ORM\Index(name="IDX_2DA3F249609F7769", columns={"actualizacionSolicitudId"})})
  9. * @ORM\Entity
  10. */
  11. class ActualizacionsolicituditemView
  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="ActualizacionSolicitudItem_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string
  24. *
  25. * @ORM\Column(name="clave", type="string", length=255, nullable=false)
  26. */
  27. private $clave;
  28. /**
  29. * @var string|null
  30. *
  31. * @ORM\Column(name="valor_previo", type="string", length=255, nullable=true)
  32. */
  33. private $valorPrevio;
  34. /**
  35. * @var string|null
  36. *
  37. * @ORM\Column(name="valor_nuevo", type="string", length=255, nullable=true)
  38. */
  39. private $valorNuevo;
  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. /**
  53. * @var \ActualizacionsolicitudView
  54. *
  55. * @ORM\ManyToOne(targetEntity="ActualizacionsolicitudView")
  56. * @ORM\JoinColumns({
  57. * @ORM\JoinColumn(name="actualizacionSolicitudId", referencedColumnName="id")
  58. * })
  59. */
  60. private $actualizacionsolicitudid;
  61. public function getId(): ?int
  62. {
  63. return $this->id;
  64. }
  65. public function getClave(): ?string
  66. {
  67. return $this->clave;
  68. }
  69. public function setClave(string $clave): self
  70. {
  71. $this->clave = $clave;
  72. return $this;
  73. }
  74. public function getValorPrevio(): ?string
  75. {
  76. return $this->valorPrevio;
  77. }
  78. public function setValorPrevio(?string $valorPrevio): self
  79. {
  80. $this->valorPrevio = $valorPrevio;
  81. return $this;
  82. }
  83. public function getValorNuevo(): ?string
  84. {
  85. return $this->valorNuevo;
  86. }
  87. public function setValorNuevo(?string $valorNuevo): self
  88. {
  89. $this->valorNuevo = $valorNuevo;
  90. return $this;
  91. }
  92. public function getCreatedat(): ?\DateTimeInterface
  93. {
  94. return $this->createdat;
  95. }
  96. public function setCreatedat(\DateTimeInterface $createdat): self
  97. {
  98. $this->createdat = $createdat;
  99. return $this;
  100. }
  101. public function getUpdatedat(): ?\DateTimeInterface
  102. {
  103. return $this->updatedat;
  104. }
  105. public function setUpdatedat(\DateTimeInterface $updatedat): self
  106. {
  107. $this->updatedat = $updatedat;
  108. return $this;
  109. }
  110. public function getActualizacionsolicitudid(): ?ActualizacionsolicitudView
  111. {
  112. return $this->actualizacionsolicitudid;
  113. }
  114. public function setActualizacionsolicitudid(?ActualizacionsolicitudView $actualizacionsolicitudid): self
  115. {
  116. $this->actualizacionsolicitudid = $actualizacionsolicitudid;
  117. return $this;
  118. }
  119. }