Añado los fuentes de java

This commit is contained in:
2025-06-09 13:37:06 +02:00
parent d6c990e5d5
commit a97a6350ee
226 changed files with 57246 additions and 0 deletions
+140
View File
@@ -0,0 +1,140 @@
/**
* @(#) ttactmed.java
*/
package com.tarisan.data;
/**
*/
public class TtactmedGPC
{
/**
*/
private int especialidad;
/**
*/
private int acto;
/**
*/
private int omc;
/**
*/
private String descripcion_gpc;
/**
*/
private String justifi_deter;
/**
*/
private String justificacionInforme;
/**
*/
private String justificacionPrescripcion;
/**
* El nivel del acto, 0 no se ve, 1 se ve y se pide sin problema, 2 se ve pero hay que justificar por que se pide
*/
/**
* @return the especialidad
*/
public int getEspecialidad() {
return especialidad;
}
/**
* @param especialidad the especialidad to set
*/
public void setEspecialidad(int especialidad) {
this.especialidad = especialidad;
}
/**
* @return the acto
*/
public int getActo() {
return acto;
}
/**
* @param acto the acto to set
*/
public void setActo(int acto) {
this.acto = acto;
}
/**
* @return the omc
*/
public int getOmc() {
return omc;
}
/**
* @param omc the omc to set
*/
public void setOmc(int omc) {
this.omc = omc;
}
/**
* @return the descripcion_gpc
*/
public String getDescripcion_gpc() {
return descripcion_gpc;
}
/**
* @param descripcion_gpc the descripcion_gpc to set
*/
public void setDescripcion_gpc(String descripcion_gpc) {
this.descripcion_gpc = descripcion_gpc;
}
/**
* @return the justifi_deter
*/
public String getJustifi_deter() {
return justifi_deter;
}
/**
* @param justifi_deter the justifi_deter to set
*/
public void setJustifi_deter(String justifi_deter) {
this.justifi_deter = justifi_deter;
}
/**
* @return the justificacion
*/
public String getJustificacionInforme() {
return justificacionInforme;
}
/**
* @param justificacion the justificacion to set
*/
public void setJustificacionInforme(String justificacionInforme) {
this.justificacionInforme = justificacionInforme;
}
/**
* @return the justificacionPrescripcion
*/
public String getJustificacionPrescripcion() {
return justificacionPrescripcion;
}
/**
* @param justificacionPrescripcion the justificacionPrescripcion to set
*/
public void setJustificacionPrescripcion(String justificacionPrescripcion) {
this.justificacionPrescripcion = justificacionPrescripcion;
}
}