Skip to content

Instantly share code, notes, and snippets.

@rvazquezglez
Created December 1, 2012 11:25
Show Gist options
  • Save rvazquezglez/4181580 to your computer and use it in GitHub Desktop.
Save rvazquezglez/4181580 to your computer and use it in GitHub Desktop.
Clase de dominio que hace referencia a banco.
public class Banco implements java.io.Serializable {
private Integer idbanco;
private String nombre;
public Banco() {
}
public Banco(Integer idbanco, String nombre) {
this.idbanco = idbanco;
this.nombre = nombre;
}
public Integer getIdbanco() {
return this.idbanco;
}
public void setIdbanco(Integer idbanco) {
this.idbanco = idbanco;
}
public String getNombre() {
return this.nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment