src/Entity/JurRespuestaProceso.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\JurRespuestaProcesoRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassJurRespuestaProcesoRepository::class)]
  7. class JurRespuestaProceso {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'respuestaProceso')]
  13.     private ?JurProceso $proceso null;
  14.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  15.     private ?string $descripcion null;
  16.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  17.     private ?\DateTimeInterface $fechaVencimiento null;
  18.     #[ORM\Column(length255)]
  19.     private ?string $archivoEvidencia null;
  20.     #[ORM\ManyToOne(inversedBy'respuestaProceso')]
  21.     private ?ParEstado $estado null;
  22.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  23.     private ?\DateTimeInterface $createAt null;
  24.     #[ORM\Column(length50)]
  25.     private ?string $createUser null;
  26.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  27.     private ?\DateTimeInterface $updateAt null;
  28.     #[ORM\Column(length50)]
  29.     private ?string $updateUser null;
  30.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  31.     private ?\DateTimeInterface $fechaRespuesta null;
  32.     #[ORM\Column(typeTypes::DECIMALprecision11scale2nullabletrue)]
  33.     private ?string $montoPagado null;
  34.     #[ORM\Column(length50)]
  35.     private ?string $allanamiento null;
  36.     public function getId(): ?int {
  37.         return $this->id;
  38.     }
  39.     public function getProceso(): ?JurProceso {
  40.         return $this->proceso;
  41.     }
  42.     public function setProceso(?JurProceso $proceso): static {
  43.         $this->proceso $proceso;
  44.         return $this;
  45.     }
  46.     public function getDescripcion(): ?string {
  47.         return $this->descripcion;
  48.     }
  49.     public function setDescripcion(string $descripcion): static {
  50.         $this->descripcion $descripcion;
  51.         return $this;
  52.     }
  53.     public function getFechaVencimiento(): ?\DateTimeInterface {
  54.         return $this->fechaVencimiento;
  55.     }
  56.     public function setFechaVencimiento(?\DateTimeInterface $fechaVencimiento): static {
  57.         $this->fechaVencimiento $fechaVencimiento;
  58.         return $this;
  59.     }
  60.     public function getArchivoEvidencia(): ?string {
  61.         return $this->archivoEvidencia;
  62.     }
  63.     public function setArchivoEvidencia(string $archivoEvidencia): static {
  64.         $this->archivoEvidencia $archivoEvidencia;
  65.         return $this;
  66.     }
  67.     public function getEstado(): ?ParEstado {
  68.         return $this->estado;
  69.     }
  70.     public function setEstado(?ParEstado $estado): static {
  71.         $this->estado $estado;
  72.         return $this;
  73.     }
  74.     public function getCreateAt(): ?\DateTimeInterface {
  75.         return $this->createAt;
  76.     }
  77.     public function setCreateAt(\DateTimeInterface $createAt): static {
  78.         $this->createAt $createAt;
  79.         return $this;
  80.     }
  81.     public function getCreateUser(): ?string {
  82.         return $this->createUser;
  83.     }
  84.     public function setCreateUser(string $createUser): static {
  85.         $this->createUser $createUser;
  86.         return $this;
  87.     }
  88.     public function getUpdateAt(): ?\DateTimeInterface {
  89.         return $this->updateAt;
  90.     }
  91.     public function setUpdateAt(\DateTimeInterface $updateAt): static {
  92.         $this->updateAt $updateAt;
  93.         return $this;
  94.     }
  95.     public function getUpdateUser(): ?string {
  96.         return $this->updateUser;
  97.     }
  98.     public function setUpdateUser(string $updateUser): static {
  99.         $this->updateUser $updateUser;
  100.         return $this;
  101.     }
  102.     public function getFechaRespuesta(): ?\DateTimeInterface {
  103.         return $this->fechaRespuesta;
  104.     }
  105.     public function setFechaRespuesta(\DateTimeInterface $fechaRespuesta): static {
  106.         $this->fechaRespuesta $fechaRespuesta;
  107.         return $this;
  108.     }
  109.     public function getMontoPagado(): ?string {
  110.         return $this->montoPagado;
  111.     }
  112.     public function setMontoPagado(string $monto): static {
  113.         $this->montoPagado $monto;
  114.         return $this;
  115.     }
  116.     public function getAllanamiento(): ?string
  117.     {
  118.         return $this->allanamiento;
  119.     }
  120.     public function setAllanamiento(string $allanamiento): static
  121.     {
  122.         $this->allanamiento $allanamiento;
  123.         return $this;
  124.     }
  125. }