38)田舎選択DTO
1061 ワード
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
+ "]";
}
}
Reference
この問題について(38)田舎選択DTO), 我々は、より多くの情報をここで見つけました https://velog.io/@stpnlsw/38-컨트리스-셀렉트-DTOテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol