/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package beans;
/**
*
* @author XCoder
*/
public class State {
private String statename;
private Integer idstate;
public Integer getIdstate() {
return idstate;
}
public void setIdstate(Integer idstate) {
this.idstate = idstate;
}
public String getStatename() {
return statename;
}
public void setStatename(String statename) {
this.statename = statename;
}
}