ajaxdto.java

来自「AJAX源码,适合初学者上手,一共有3个源码,循序渐进的学习AJAX,这是3」· Java 代码 · 共 56 行

JAVA
56
字号
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 + =
减小字号Ctrl + -
显示快捷键?