src/Entity/DatosCirugia.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DatosCirugiaRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use DateTime;
  6. /**
  7.  * @ORM\Entity(repositoryClass=DatosCirugiaRepository::class)
  8.  * @ORM\HasLifecycleCallbacks 
  9.  */
  10. class DatosCirugia
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="string", length=50)
  20.      */
  21.     private $ip_crea;
  22.     /**
  23.      * @ORM\Column(type="string", length=50)
  24.      */
  25.     private $ip_modifica;
  26.     /**
  27.      * @ORM\Column(type="integer")
  28.      */
  29.     private $user_crea;
  30.     /**
  31.      * @ORM\Column(type="integer")
  32.      */
  33.     private $user_modifica;
  34.     /**
  35.      * @ORM\Column(type="datetime")
  36.      */
  37.     private $created_at;
  38.     /**
  39.      * @ORM\Column(type="datetime")
  40.      */
  41.     private $updated_at;
  42.     /**
  43.      * @ORM\ManyToOne(targetEntity=Agenda::class, inversedBy="datosCirugias")
  44.      * @ORM\JoinColumn(nullable=false)
  45.      */
  46.     private $agenda;
  47.     /**
  48.      * @ORM\Column(type="string", length=50)
  49.      */
  50.     private $estado;
  51.     /**
  52.      * @ORM\Column(type="boolean", nullable=true)
  53.      */
  54.     private $conf_identidad;
  55.     /**
  56.      * @ORM\Column(type="boolean", nullable=true)
  57.      */
  58.     private $conf_sitio_quirur;
  59.     /**
  60.      * @ORM\Column(type="boolean", nullable=true)
  61.      */
  62.     private $conf_procedimiento;
  63.     /**
  64.      * @ORM\Column(type="boolean", nullable=true)
  65.      */
  66.     private $conf_consentimiento;
  67.     /**
  68.      * @ORM\Column(type="boolean", nullable=true)
  69.      */
  70.     private $demarcacion_quirur;
  71.     /**
  72.      * @ORM\Column(type="boolean", nullable=true)
  73.      */
  74.     private $equipo_intubacion;
  75.     /**
  76.      * @ORM\Column(type="boolean", nullable=true)
  77.      */
  78.     private $equipo_aspiracion;
  79.     /**
  80.      * @ORM\Column(type="boolean", nullable=true)
  81.      */
  82.     private $ventilacion_oxigeno;
  83.     /**
  84.      * @ORM\Column(type="boolean", nullable=true)
  85.      */
  86.     private $ventilacion_farmacos_inhalados;
  87.     /**
  88.      * @ORM\Column(type="boolean", nullable=true)
  89.      */
  90.     private $ventilacion_medicacion;
  91.     /**
  92.      * @ORM\Column(type="boolean", nullable=true)
  93.      */
  94.     private $pulsoximetro;
  95.     /**
  96.      * @ORM\Column(type="boolean", nullable=true)
  97.      */
  98.     private $capnografo;
  99.     /**
  100.      * @ORM\Column(type="boolean", nullable=true)
  101.      */
  102.     private $alergias_conocidas;
  103.     /**
  104.      * @ORM\Column(type="boolean", nullable=true)
  105.      */
  106.     private $riesgo_aspiracion;
  107.     /**
  108.      * @ORM\Column(type="boolean", nullable=true)
  109.      */
  110.     private $riesgo_hemorragia;
  111.     /**
  112.      * @ORM\Column(type="boolean", nullable=true)
  113.      */
  114.     private $hemoderivados_lab;
  115.     /**
  116.      * @ORM\Column(type="boolean", nullable=true)
  117.      */
  118.     private $conf_equipo;
  119.     /**
  120.      * @ORM\Column(type="boolean", nullable=true)
  121.      */
  122.     private $identidad_paciente;
  123.     /**
  124.      * @ORM\Column(type="boolean", nullable=true)
  125.      */
  126.     private $sitio_quirur;
  127.     /**
  128.      * @ORM\Column(type="boolean", nullable=true)
  129.      */
  130.     private $procedimiento_lateralidad;
  131.     /**
  132.      * @ORM\Column(type="boolean", nullable=true)
  133.      */
  134.     private $duracion_procedimiento;
  135.     /**
  136.      * @ORM\Column(type="boolean", nullable=true)
  137.      */
  138.     private $perdida_sangre;
  139.     /**
  140.      * @ORM\Column(type="boolean", nullable=true)
  141.      */
  142.     private $problema_especifico;
  143.     /**
  144.      * @ORM\Column(type="boolean", nullable=true)
  145.      */
  146.     private $esterilidad;
  147.     /**
  148.      * @ORM\Column(type="boolean", nullable=true)
  149.      */
  150.     private $recuento_inicial;
  151.     /**
  152.      * @ORM\Column(type="boolean", nullable=true)
  153.      */
  154.     private $dudas_equipo;
  155.     /**
  156.      * @ORM\Column(type="boolean", nullable=true)
  157.      */
  158.     private $profilaxis_antibiotica;
  159.     /**
  160.      * @ORM\Column(type="boolean", nullable=true)
  161.      */
  162.     private $imagenes_procedimiento_quirur;
  163.     /**
  164.      * @ORM\Column(type="boolean", nullable=true)
  165.      */
  166.     private $recuento_final;
  167.     /**
  168.      * @ORM\Column(type="boolean", nullable=true)
  169.      */
  170.     private $empaquetar_paciente;
  171.     /**
  172.      * @ORM\Column(type="integer", nullable=true)
  173.      */
  174.     private $numero_compresas;
  175.     /**
  176.      * @ORM\Column(type="string", length=50, nullable=true)
  177.      */
  178.     private $nombre_proced_realizado;
  179.     /**
  180.      * @ORM\Column(type="boolean", nullable=true)
  181.      */
  182.     private $herida_limpia;
  183.     /**
  184.      * @ORM\Column(type="boolean", nullable=true)
  185.      */
  186.     private $herida_limpia_cont;
  187.     /**
  188.      * @ORM\Column(type="boolean", nullable=true)
  189.      */
  190.     private $herida_contaminada;
  191.     /**
  192.      * @ORM\Column(type="boolean", nullable=true)
  193.      */
  194.     private $herida_sucia;
  195.     /**
  196.      * @ORM\Column(type="boolean", nullable=true)
  197.      */
  198.     private $toma_muestras;
  199.     /**
  200.      * @ORM\Column(type="boolean", nullable=true)
  201.      */
  202.     private $etiquetado_muestras;
  203.     /**
  204.      * @ORM\Column(type="boolean", nullable=true)
  205.      */
  206.     private $muestra_citoquimico;
  207.     /**
  208.      * @ORM\Column(type="integer", nullable=true)
  209.      */
  210.     private $muestra_numero;
  211.     /**
  212.      * @ORM\Column(type="string", length=50, nullable=true)
  213.      */
  214.     private $muestra_nombre;
  215.     /**
  216.      * @ORM\Column(type="boolean", nullable=true)
  217.      */
  218.     private $muestra_cultivos;
  219.     /**
  220.      * @ORM\Column(type="integer", nullable=true)
  221.      */
  222.     private $numero_cultivos;
  223.     /**
  224.      * @ORM\Column(type="string", length=50, nullable=true)
  225.      */
  226.     private $nombre_cultivos;
  227.     /**
  228.      * @ORM\Column(type="boolean", nullable=true)
  229.      */
  230.     private $muestra_anatomo;
  231.     /**
  232.      * @ORM\Column(type="integer", nullable=true)
  233.      */
  234.     private $numero_anatomo;
  235.     /**
  236.      * @ORM\Column(type="string", length=50, nullable=true)
  237.      */
  238.     private $nombre_anatomo;
  239.     /**
  240.      * @ORM\Column(type="string", length=50, nullable=true)
  241.      */
  242.     private $muestra_otros;
  243.     /**
  244.      * @ORM\Column(type="boolean", nullable=true)
  245.      */
  246.     private $problema_instrumental;
  247.     /**
  248.      * @ORM\Column(type="string", length=50, nullable=true)
  249.      */
  250.     private $problemas_cuales;
  251.     /**
  252.      * @ORM\Column(type="boolean", nullable=true)
  253.      */
  254.     private $revision_recup_paciente;
  255.     /**
  256.      * @ORM\Column(type="datetime", nullable=true)
  257.      */
  258.     private $fecha_admision;
  259.     /**
  260.      * @ORM\Column(type="string", length=50, nullable=true)
  261.      */
  262.     private $alergias_conocidas_cuales;
  263.     /**
  264.      * @ORM\ManyToOne(targetEntity=User::class)
  265.      */
  266.     private $cirujano;
  267.     /**
  268.      * @ORM\ManyToOne(targetEntity=User::class)
  269.      */
  270.     private $anestesiologo;
  271.     /**
  272.      * @ORM\ManyToOne(targetEntity=Procedimientos::class)
  273.      */
  274.     private $procedimiento;
  275.     /**
  276.      * @ORM\Column(type="string", length=50, nullable=true)
  277.      */
  278.     private $estado_procedimiento;
  279.     public function getId(): ?int
  280.     {
  281.         return $this->id;
  282.     }
  283.     public function getIpCrea(): ?string
  284.     {
  285.         return $this->ip_crea;
  286.     }
  287.     public function setIpCrea(string $ip_crea): self
  288.     {
  289.         $this->ip_crea $ip_crea;
  290.         return $this;
  291.     }
  292.     public function getIpModifica(): ?string
  293.     {
  294.         return $this->ip_modifica;
  295.     }
  296.     public function setIpModifica(string $ip_modifica): self
  297.     {
  298.         $this->ip_modifica $ip_modifica;
  299.         return $this;
  300.     }
  301.     public function getUserCrea(): ?int
  302.     {
  303.         return $this->user_crea;
  304.     }
  305.     public function setUserCrea(int $user_crea): self
  306.     {
  307.         $this->user_crea $user_crea;
  308.         return $this;
  309.     }
  310.     public function getUserModifica(): ?int
  311.     {
  312.         return $this->user_modifica;
  313.     }
  314.     public function setUserModifica(int $user_modifica): self
  315.     {
  316.         $this->user_modifica $user_modifica;
  317.         return $this;
  318.     }
  319.     public function getCreatedAt(): ?\DateTimeInterface
  320.     {
  321.         return $this->created_at;
  322.     }
  323.     public function setCreatedAt(\DateTimeInterface $created_at): self
  324.     {
  325.         $this->created_at $created_at;
  326.         return $this;
  327.     }
  328.     public function getUpdatedAt(): ?\DateTimeInterface
  329.     {
  330.         return $this->updated_at;
  331.     }
  332.     public function setUpdatedAt(\DateTimeInterface $updated_at): self
  333.     {
  334.         $this->updated_at $updated_at;
  335.         return $this;
  336.     }
  337.      /**
  338.      * @ORM\PrePersist
  339.      * @ORM\PreUpdate
  340.      */
  341.     public function updatedTimestamps(): void
  342.     {
  343.         $dateTimeNow = new DateTime('now');
  344.         $this->setUpdatedAt($dateTimeNow);
  345.         if ($this->getCreatedAt() === null) {
  346.             $this->setCreatedAt($dateTimeNow);
  347.         }
  348.     }
  349.      public function getAgenda(): ?Agenda
  350.      {
  351.          return $this->agenda;
  352.      }
  353.      public function setAgenda(?Agenda $agenda): self
  354.      {
  355.          $this->agenda $agenda;
  356.          return $this;
  357.      }
  358.      public function getEstado(): ?string
  359.      {
  360.          return $this->estado;
  361.      }
  362.      public function setEstado(string $estado): self
  363.      {
  364.          $this->estado $estado;
  365.          return $this;
  366.      }
  367.      public function getConfIdentidad(): ?bool
  368.      {
  369.          return $this->conf_identidad;
  370.      }
  371.      public function setConfIdentidad(?bool $conf_identidad): self
  372.      {
  373.          $this->conf_identidad $conf_identidad;
  374.          return $this;
  375.      }
  376.      public function getConfSitioQuirur(): ?bool
  377.      {
  378.          return $this->conf_sitio_quirur;
  379.      }
  380.      public function setConfSitioQuirur(?bool $conf_sitio_quirur): self
  381.      {
  382.          $this->conf_sitio_quirur $conf_sitio_quirur;
  383.          return $this;
  384.      }
  385.      public function getConfProcedimiento(): ?bool
  386.      {
  387.          return $this->conf_procedimiento;
  388.      }
  389.      public function setConfProcedimiento(?bool $conf_procedimiento): self
  390.      {
  391.          $this->conf_procedimiento $conf_procedimiento;
  392.          return $this;
  393.      }
  394.      public function getConfConsentimiento(): ?bool
  395.      {
  396.          return $this->conf_consentimiento;
  397.      }
  398.      public function setConfConsentimiento(?bool $conf_consentimiento): self
  399.      {
  400.          $this->conf_consentimiento $conf_consentimiento;
  401.          return $this;
  402.      }
  403.      public function getDemarcacionQuirur(): ?bool
  404.      {
  405.          return $this->demarcacion_quirur;
  406.      }
  407.      public function setDemarcacionQuirur(?bool $demarcacion_quirur): self
  408.      {
  409.          $this->demarcacion_quirur $demarcacion_quirur;
  410.          return $this;
  411.      }
  412.      public function getEquipoIntubacion(): ?bool
  413.      {
  414.          return $this->equipo_intubacion;
  415.      }
  416.      public function setEquipoIntubacion(?bool $equipo_intubacion): self
  417.      {
  418.          $this->equipo_intubacion $equipo_intubacion;
  419.          return $this;
  420.      }
  421.      public function getEquipoAspiracion(): ?bool
  422.      {
  423.          return $this->equipo_aspiracion;
  424.      }
  425.      public function setEquipoAspiracion(?bool $equipo_aspiracion): self
  426.      {
  427.          $this->equipo_aspiracion $equipo_aspiracion;
  428.          return $this;
  429.      }
  430.      public function getVentilacionOxigeno(): ?bool
  431.      {
  432.          return $this->ventilacion_oxigeno;
  433.      }
  434.      public function setVentilacionOxigeno(?bool $ventilacion_oxigeno): self
  435.      {
  436.          $this->ventilacion_oxigeno $ventilacion_oxigeno;
  437.          return $this;
  438.      }
  439.      public function getVentilacionFarmacosInhalados(): ?bool
  440.      {
  441.          return $this->ventilacion_farmacos_inhalados;
  442.      }
  443.      public function setVentilacionFarmacosInhalados(?bool $ventilacion_farmacos_inhalados): self
  444.      {
  445.          $this->ventilacion_farmacos_inhalados $ventilacion_farmacos_inhalados;
  446.          return $this;
  447.      }
  448.      public function getVentilacionMedicacion(): ?bool
  449.      {
  450.          return $this->ventilacion_medicacion;
  451.      }
  452.      public function setVentilacionMedicacion(?bool $ventilacion_medicacion): self
  453.      {
  454.          $this->ventilacion_medicacion $ventilacion_medicacion;
  455.          return $this;
  456.      }
  457.      public function getPulsoximetro(): ?bool
  458.      {
  459.          return $this->pulsoximetro;
  460.      }
  461.      public function setPulsoximetro(?bool $pulsoximetro): self
  462.      {
  463.          $this->pulsoximetro $pulsoximetro;
  464.          return $this;
  465.      }
  466.      public function getCapnografo(): ?bool
  467.      {
  468.          return $this->capnografo;
  469.      }
  470.      public function setCapnografo(?bool $capnografo): self
  471.      {
  472.          $this->capnografo $capnografo;
  473.          return $this;
  474.      }
  475.      public function getAlergiasConocidas(): ?bool
  476.      {
  477.          return $this->alergias_conocidas;
  478.      }
  479.      public function setAlergiasConocidas(?bool $alergias_conocidas): self
  480.      {
  481.          $this->alergias_conocidas $alergias_conocidas;
  482.          return $this;
  483.      }
  484.      public function getRiesgoAspiracion(): ?bool
  485.      {
  486.          return $this->riesgo_aspiracion;
  487.      }
  488.      public function setRiesgoAspiracion(?bool $riesgo_aspiracion): self
  489.      {
  490.          $this->riesgo_aspiracion $riesgo_aspiracion;
  491.          return $this;
  492.      }
  493.      public function getRiesgoHemorragia(): ?bool
  494.      {
  495.          return $this->riesgo_hemorragia;
  496.      }
  497.      public function setRiesgoHemorragia(?bool $riesgo_hemorragia): self
  498.      {
  499.          $this->riesgo_hemorragia $riesgo_hemorragia;
  500.          return $this;
  501.      }
  502.      public function getHemoderivadosLab(): ?bool
  503.      {
  504.          return $this->hemoderivados_lab;
  505.      }
  506.      public function setHemoderivadosLab(?bool $hemoderivados_lab): self
  507.      {
  508.          $this->hemoderivados_lab $hemoderivados_lab;
  509.          return $this;
  510.      }
  511.      public function getConfEquipo(): ?bool
  512.      {
  513.          return $this->conf_equipo;
  514.      }
  515.      public function setConfEquipo(?bool $conf_equipo): self
  516.      {
  517.          $this->conf_equipo $conf_equipo;
  518.          return $this;
  519.      }
  520.      public function getIdentidadPaciente(): ?bool
  521.      {
  522.          return $this->identidad_paciente;
  523.      }
  524.      public function setIdentidadPaciente(?bool $identidad_paciente): self
  525.      {
  526.          $this->identidad_paciente $identidad_paciente;
  527.          return $this;
  528.      }
  529.      public function getSitioQuirur(): ?bool
  530.      {
  531.          return $this->sitio_quirur;
  532.      }
  533.      public function setSitioQuirur(?bool $sitio_quirur): self
  534.      {
  535.          $this->sitio_quirur $sitio_quirur;
  536.          return $this;
  537.      }
  538.      public function getProcedimientoLateralidad(): ?bool
  539.      {
  540.          return $this->procedimiento_lateralidad;
  541.      }
  542.      public function setProcedimientoLateralidad(?bool $procedimiento_lateralidad): self
  543.      {
  544.          $this->procedimiento_lateralidad $procedimiento_lateralidad;
  545.          return $this;
  546.      }
  547.      public function getDuracionProcedimiento(): ?bool
  548.      {
  549.          return $this->duracion_procedimiento;
  550.      }
  551.      public function setDuracionProcedimiento(?bool $duracion_procedimiento): self
  552.      {
  553.          $this->duracion_procedimiento $duracion_procedimiento;
  554.          return $this;
  555.      }
  556.      public function getPerdidaSangre(): ?bool
  557.      {
  558.          return $this->perdida_sangre;
  559.      }
  560.      public function setPerdidaSangre(?bool $perdida_sangre): self
  561.      {
  562.          $this->perdida_sangre $perdida_sangre;
  563.          return $this;
  564.      }
  565.      public function getProblemaEspecifico(): ?bool
  566.      {
  567.          return $this->problema_especifico;
  568.      }
  569.      public function setProblemaEspecifico(?bool $problema_especifico): self
  570.      {
  571.          $this->problema_especifico $problema_especifico;
  572.          return $this;
  573.      }
  574.      public function getEsterilidad(): ?bool
  575.      {
  576.          return $this->esterilidad;
  577.      }
  578.      public function setEsterilidad(?bool $esterilidad): self
  579.      {
  580.          $this->esterilidad $esterilidad;
  581.          return $this;
  582.      }
  583.      public function getRecuentoInicial(): ?bool
  584.      {
  585.          return $this->recuento_inicial;
  586.      }
  587.      public function setRecuentoInicial(?bool $recuento_inicial): self
  588.      {
  589.          $this->recuento_inicial $recuento_inicial;
  590.          return $this;
  591.      }
  592.      public function getDudasEquipo(): ?bool
  593.      {
  594.          return $this->dudas_equipo;
  595.      }
  596.      public function setDudasEquipo(?bool $dudas_equipo): self
  597.      {
  598.          $this->dudas_equipo $dudas_equipo;
  599.          return $this;
  600.      }
  601.      public function getProfilaxisAntibiotica(): ?bool
  602.      {
  603.          return $this->profilaxis_antibiotica;
  604.      }
  605.      public function setProfilaxisAntibiotica(?bool $profilaxis_antibiotica): self
  606.      {
  607.          $this->profilaxis_antibiotica $profilaxis_antibiotica;
  608.          return $this;
  609.      }
  610.      public function getImagenesProcedimientoQuirur(): ?bool
  611.      {
  612.          return $this->imagenes_procedimiento_quirur;
  613.      }
  614.      public function setImagenesProcedimientoQuirur(?bool $imagenes_procedimiento_quirur): self
  615.      {
  616.          $this->imagenes_procedimiento_quirur $imagenes_procedimiento_quirur;
  617.          return $this;
  618.      }
  619.      public function getRecuentoFinal(): ?bool
  620.      {
  621.          return $this->recuento_final;
  622.      }
  623.      public function setRecuentoFinal(?bool $recuento_final): self
  624.      {
  625.          $this->recuento_final $recuento_final;
  626.          return $this;
  627.      }
  628.      public function getEmpaquetarPaciente(): ?bool
  629.      {
  630.          return $this->empaquetar_paciente;
  631.      }
  632.      public function setEmpaquetarPaciente(?bool $empaquetar_paciente): self
  633.      {
  634.          $this->empaquetar_paciente $empaquetar_paciente;
  635.          return $this;
  636.      }
  637.      public function getNumeroCompresas(): ?int
  638.      {
  639.          return $this->numero_compresas;
  640.      }
  641.      public function setNumeroCompresas(?int $numero_compresas): self
  642.      {
  643.          $this->numero_compresas $numero_compresas;
  644.          return $this;
  645.      }
  646.      public function getNombreProcedRealizado(): ?string
  647.      {
  648.          return $this->nombre_proced_realizado;
  649.      }
  650.      public function setNombreProcedRealizado(?string $nombre_proced_realizado): self
  651.      {
  652.          $this->nombre_proced_realizado $nombre_proced_realizado;
  653.          return $this;
  654.      }
  655.      public function getHeridaLimpia(): ?bool
  656.      {
  657.          return $this->herida_limpia;
  658.      }
  659.      public function setHeridaLimpia(?bool $herida_limpia): self
  660.      {
  661.          $this->herida_limpia $herida_limpia;
  662.          return $this;
  663.      }
  664.      public function getHeridaLimpiaCont(): ?bool
  665.      {
  666.          return $this->herida_limpia_cont;
  667.      }
  668.      public function setHeridaLimpiaCont(?bool $herida_limpia_cont): self
  669.      {
  670.          $this->herida_limpia_cont $herida_limpia_cont;
  671.          return $this;
  672.      }
  673.      public function getHeridaContaminada(): ?bool
  674.      {
  675.          return $this->herida_contaminada;
  676.      }
  677.      public function setHeridaContaminada(?bool $herida_contaminada): self
  678.      {
  679.          $this->herida_contaminada $herida_contaminada;
  680.          return $this;
  681.      }
  682.      public function getHeridaSucia(): ?bool
  683.      {
  684.          return $this->herida_sucia;
  685.      }
  686.      public function setHeridaSucia(?bool $herida_sucia): self
  687.      {
  688.          $this->herida_sucia $herida_sucia;
  689.          return $this;
  690.      }
  691.      public function getTomaMuestras(): ?bool
  692.      {
  693.          return $this->toma_muestras;
  694.      }
  695.      public function setTomaMuestras(?bool $toma_muestras): self
  696.      {
  697.          $this->toma_muestras $toma_muestras;
  698.          return $this;
  699.      }
  700.      public function getEtiquetadoMuestras(): ?bool
  701.      {
  702.          return $this->etiquetado_muestras;
  703.      }
  704.      public function setEtiquetadoMuestras(?bool $etiquetado_muestras): self
  705.      {
  706.          $this->etiquetado_muestras $etiquetado_muestras;
  707.          return $this;
  708.      }
  709.      public function getMuestraCitoquimico(): ?bool
  710.      {
  711.          return $this->muestra_citoquimico;
  712.      }
  713.      public function setMuestraCitoquimico(?bool $muestra_citoquimico): self
  714.      {
  715.          $this->muestra_citoquimico $muestra_citoquimico;
  716.          return $this;
  717.      }
  718.      public function getMuestraNumero(): ?int
  719.      {
  720.          return $this->muestra_numero;
  721.      }
  722.      public function setMuestraNumero(?int $muestra_numero): self
  723.      {
  724.          $this->muestra_numero $muestra_numero;
  725.          return $this;
  726.      }
  727.      public function getMuestraNombre(): ?string
  728.      {
  729.          return $this->muestra_nombre;
  730.      }
  731.      public function setMuestraNombre(?string $muestra_nombre): self
  732.      {
  733.          $this->muestra_nombre $muestra_nombre;
  734.          return $this;
  735.      }
  736.      public function getMuestraCultivos(): ?bool
  737.      {
  738.          return $this->muestra_cultivos;
  739.      }
  740.      public function setMuestraCultivos(?bool $muestra_cultivos): self
  741.      {
  742.          $this->muestra_cultivos $muestra_cultivos;
  743.          return $this;
  744.      }
  745.      public function getNumeroCultivos(): ?int
  746.      {
  747.          return $this->numero_cultivos;
  748.      }
  749.      public function setNumeroCultivos(?int $numero_cultivos): self
  750.      {
  751.          $this->numero_cultivos $numero_cultivos;
  752.          return $this;
  753.      }
  754.      public function getNombreCultivos(): ?string
  755.      {
  756.          return $this->nombre_cultivos;
  757.      }
  758.      public function setNombreCultivos(?string $nombre_cultivos): self
  759.      {
  760.          $this->nombre_cultivos $nombre_cultivos;
  761.          return $this;
  762.      }
  763.      public function getMuestraAnatomo(): ?bool
  764.      {
  765.          return $this->muestra_anatomo;
  766.      }
  767.      public function setMuestraAnatomo(?bool $muestra_anatomo): self
  768.      {
  769.          $this->muestra_anatomo $muestra_anatomo;
  770.          return $this;
  771.      }
  772.      public function getNumeroAnatomo(): ?int
  773.      {
  774.          return $this->numero_anatomo;
  775.      }
  776.      public function setNumeroAnatomo(?int $numero_anatomo): self
  777.      {
  778.          $this->numero_anatomo $numero_anatomo;
  779.          return $this;
  780.      }
  781.      public function getNombreAnatomo(): ?string
  782.      {
  783.          return $this->nombre_anatomo;
  784.      }
  785.      public function setNombreAnatomo(?string $nombre_anatomo): self
  786.      {
  787.          $this->nombre_anatomo $nombre_anatomo;
  788.          return $this;
  789.      }
  790.      public function getMuestraOtros(): ?string
  791.      {
  792.          return $this->muestra_otros;
  793.      }
  794.      public function setMuestraOtros(?string $muestra_otros): self
  795.      {
  796.          $this->muestra_otros $muestra_otros;
  797.          return $this;
  798.      }
  799.      public function getProblemaInstrumental(): ?bool
  800.      {
  801.          return $this->problema_instrumental;
  802.      }
  803.      public function setProblemaInstrumental(?bool $problema_instrumental): self
  804.      {
  805.          $this->problema_instrumental $problema_instrumental;
  806.          return $this;
  807.      }
  808.      public function getProblemasCuales(): ?string
  809.      {
  810.          return $this->problemas_cuales;
  811.      }
  812.      public function setProblemasCuales(?string $problemas_cuales): self
  813.      {
  814.          $this->problemas_cuales $problemas_cuales;
  815.          return $this;
  816.      }
  817.      public function getRevisionRecupPaciente(): ?bool
  818.      {
  819.          return $this->revision_recup_paciente;
  820.      }
  821.      public function setRevisionRecupPaciente(?bool $revision_recup_paciente): self
  822.      {
  823.          $this->revision_recup_paciente $revision_recup_paciente;
  824.          return $this;
  825.      }
  826.      public function getFechaAdmision(): ?\DateTimeInterface
  827.      {
  828.          return $this->fecha_admision;
  829.      }
  830.      public function setFechaAdmision(?\DateTimeInterface $fecha_admision): self
  831.      {
  832.          $this->fecha_admision $fecha_admision;
  833.          return $this;
  834.      }
  835.      public function getAlergiasConocidasCuales(): ?string
  836.      {
  837.          return $this->alergias_conocidas_cuales;
  838.      }
  839.      public function setAlergiasConocidasCuales(?string $alergias_conocidas_cuales): self
  840.      {
  841.          $this->alergias_conocidas_cuales $alergias_conocidas_cuales;
  842.          return $this;
  843.      }
  844.      public function getCirujano(): ?User
  845.      {
  846.          return $this->cirujano;
  847.      }
  848.      public function setCirujano(?User $cirujano): self
  849.      {
  850.          $this->cirujano $cirujano;
  851.          return $this;
  852.      }
  853.      public function getAnestesiologo(): ?User
  854.      {
  855.          return $this->anestesiologo;
  856.      }
  857.      public function setAnestesiologo(?User $anestesiologo): self
  858.      {
  859.          $this->anestesiologo $anestesiologo;
  860.          return $this;
  861.      }
  862.      public function getProcedimiento(): ?Procedimientos
  863.      {
  864.          return $this->procedimiento;
  865.      }
  866.      public function setProcedimiento(?Procedimientos $procedimiento): self
  867.      {
  868.          $this->procedimiento $procedimiento;
  869.          return $this;
  870.      }
  871.      public function getEstadoProcedimiento(): ?string
  872.      {
  873.          return $this->estado_procedimiento;
  874.      }
  875.      public function setEstadoProcedimiento(?string $estado_procedimiento): self
  876.      {
  877.          $this->estado_procedimiento $estado_procedimiento;
  878.          return $this;
  879.      }
  880. }