38) 컨트리스 셀렉트 DTO

hahahoho셍·2021년 5월 1일
0

자바 공부

목록 보기
39/97
package ex07_jdbc;

// dto 클래스 (한건한건의 정보를 담는 클래스)
public class Countries {
	private String country_id;
	private String country_name;
	private int region_id;
	
	
	public Countries() {
		super();
	}
	public Countries(String country_id, String country_name, int region_id) {
		super();
		this.country_id = country_id;
		this.country_name = country_name;
		this.region_id = region_id;
	}

	
	public String getCountry_id() {
		return country_id;
	}
	public String getCountry_name() {
		return country_name;
	}
	public int getRegion_id() {
		return region_id;
	}

	
	public void setCountry_id(String country_id) {
		this.country_id = country_id;
	}
	public void setCountry_name(String country_name) {
		this.country_name = country_name;
	}
	public void setRegion_id(int region_id) {
		this.region_id = region_id;
	}

	
	@Override
	public String toString() {
		return "Countries [country_id=" + country_id + ", country_name=" + country_name + ", region_id=" + region_id
				+ "]";
	}
	
	

}
profile
그냥 공부 한거 적는 벨로그 하하하핳ㅎ하하하핳하ㅏ

0개의 댓글

관련 채용 정보