141 lines
2.2 KiB
Java
141 lines
2.2 KiB
Java
/**
|
|
* @(#) 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;
|
|
}
|
|
|
|
}
|
|
|