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
@@ -0,0 +1,142 @@
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;
}
}