package fr.zng.xxzx.common.entity;

public class CityWeatherEntity {

	/**
	 * 城市编号
	 */
	private String cityId="";
	/**
	 * 城市名称
	 */
	private String cityName = "";
	public String getCityId() {
		return cityId;
	}
	public void setCityId(String cityId) {
		this.cityId = cityId;
	}
	public String getCityName() {
		return cityName;
	}
	public void setCityName(String cityName) {
		this.cityName = cityName;
	}

}
