📄 ajaxdto.java
字号:
package dto;
public class AjaxDTO {
private int country_id;
private int city_id;
private int country_city_id;
private String country;
private String city;
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public int getCity_id() {
return city_id;
}
public void setCity_id(int city_id) {
this.city_id = city_id;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public int getCountry_city_id() {
return country_city_id;
}
public void setCountry_city_id(int country_city_id) {
this.country_city_id = country_city_id;
}
public int getCountry_id() {
return country_id;
}
public void setCountry_id(int country_id) {
this.country_id = country_id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -