package model; public class Cidade { private int codcidade; private String nomecidade; private int coduf; /** * @return the codcidade */ public int getCodcidade() { return codcidade; } /** * @param codcidade the codcidade to set */ public void setCodcidade(int codcidade) { this.codcidade = codcidade; } /** * @return the nomecidade */ public String getNomecidade() { return nomecidade; } /** * @param nomecidade the nomecidade to set */ public void setNomecidade(String nomecidade) { this.nomecidade = nomecidade; } /** * @return the coduf */ public int getCoduf() { return coduf; } /** * @param coduf the coduf to set */ public void setCoduf(int coduf) { this.coduf = coduf; } }