143 lines
1.6 KiB
Java
143 lines
1.6 KiB
Java
package com.tarisan.data;
|
|
|
|
|
|
public class TTFranquiciasDentales {
|
|
|
|
/**
|
|
*/
|
|
private int especialidad;
|
|
|
|
/**
|
|
*/
|
|
private int acto;
|
|
|
|
/**
|
|
*/
|
|
private int entidad;
|
|
|
|
/**
|
|
*/
|
|
private long colectivo;
|
|
|
|
/**
|
|
*/
|
|
private int anio;
|
|
|
|
/**
|
|
*/
|
|
private int precio;
|
|
|
|
/**
|
|
*/
|
|
private String descripcion;
|
|
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getEspecialidad() {
|
|
return especialidad;
|
|
}
|
|
|
|
/**
|
|
* @param especialidad
|
|
* @return
|
|
*/
|
|
public void setEspecialidad(int especialidad) {
|
|
this.especialidad = especialidad;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getActo() {
|
|
return acto;
|
|
}
|
|
|
|
/**
|
|
* @param acto
|
|
* @return
|
|
*/
|
|
public void setActo(int acto) {
|
|
this.acto = acto;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getEntidad() {
|
|
return entidad;
|
|
}
|
|
|
|
/**
|
|
* @param entidad
|
|
* @return
|
|
*/
|
|
public void setEntidad(int entidad) {
|
|
this.entidad = entidad;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public long getColectivo() {
|
|
return colectivo;
|
|
}
|
|
|
|
/**
|
|
* @param colectivo
|
|
* @return
|
|
*/
|
|
public void setColectivo(long colectivo) {
|
|
this.colectivo = colectivo;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getAnio() {
|
|
return anio;
|
|
}
|
|
|
|
/**
|
|
* @param anio
|
|
* @return
|
|
*/
|
|
public void setAnio(int anio) {
|
|
this.anio = anio;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public int getPrecio() {
|
|
return precio;
|
|
}
|
|
|
|
/**
|
|
* @param precio
|
|
* @return
|
|
*/
|
|
public void setPrecio(int precio) {
|
|
this.precio = precio;
|
|
}
|
|
|
|
/**
|
|
* @return
|
|
*/
|
|
public String getDescripcion() {
|
|
return descripcion;
|
|
}
|
|
|
|
/**
|
|
* @param descripcion
|
|
* @return
|
|
*/
|
|
public void setDescripcion(String descripcion) {
|
|
this.descripcion = descripcion;
|
|
}
|
|
|
|
|
|
|
|
}
|