Añado los fuentes de java
This commit is contained in:
@@ -0,0 +1,159 @@
|
||||
/**
|
||||
* @(#) ttactmed.java
|
||||
*/
|
||||
package com.tarisan.data;
|
||||
|
||||
|
||||
/**
|
||||
*/
|
||||
public class Ttactmed
|
||||
{
|
||||
|
||||
/**
|
||||
*/
|
||||
private int especialidad;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int acto;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String descripcion;
|
||||
|
||||
/**
|
||||
*/
|
||||
private double precio;
|
||||
|
||||
/**
|
||||
*/
|
||||
private String autoprescrip;
|
||||
|
||||
/**
|
||||
*/
|
||||
private int derecho;
|
||||
|
||||
/**
|
||||
* 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
|
||||
*/
|
||||
private int visibilidad;
|
||||
|
||||
public int getVisibilidad()
|
||||
{
|
||||
return this.visibilidad;
|
||||
}
|
||||
|
||||
public void setVisibilidad(int visi)
|
||||
{
|
||||
this.visibilidad = visi;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getEspecialidad()
|
||||
{
|
||||
return this.especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param especialidad
|
||||
* @return
|
||||
*/
|
||||
public void setEspecialidad(int especialidad)
|
||||
{
|
||||
this.especialidad = especialidad;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getActo()
|
||||
{
|
||||
return this.acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param acto
|
||||
* @return
|
||||
*/
|
||||
public void setActo(int acto)
|
||||
{
|
||||
this.acto = acto;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getDescripcion()
|
||||
{
|
||||
return this.descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param descripcion
|
||||
* @return
|
||||
*/
|
||||
public void setDescripcion(String descripcion)
|
||||
{
|
||||
this.descripcion = descripcion;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public double getPrecio()
|
||||
{
|
||||
return this.precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param precio
|
||||
* @return
|
||||
*/
|
||||
public void setPrecio(double precio)
|
||||
{
|
||||
this.precio = precio;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public String getAutoprescrip()
|
||||
{
|
||||
return this.autoprescrip;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param autoprescrip
|
||||
* @return
|
||||
*/
|
||||
public void setAutoprescrip(String autoprescrip)
|
||||
{
|
||||
this.autoprescrip = autoprescrip;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
public int getDerecho()
|
||||
{
|
||||
return this.derecho;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param derecho
|
||||
* @return
|
||||
*/
|
||||
public void setDerecho(int derecho)
|
||||
{
|
||||
this.derecho = derecho;
|
||||
}
|
||||
|
||||
public Ttactmed()
|
||||
{
|
||||
visibilidad=1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user