您的位置:首页 > 其它

zTree实现地市县三级级联封装类

2017-06-06 12:06 113 查看
zTree实现地市县三级级联封装类

Province.java:

/**
* @Title:Province.java
* @Package:com.gwtjs.model
* @Description:省份封装类
* @author:Youhaidong(游海东)
* @date:2014-5-10 下午5:17:16
* @version V1.0
*/
package com.gwtjs.model;

import java.io.Serializable;

/**
* 类功能说明
* 类改动者 改动日期
* 改动说明
* <p>Title:Province.java</p>
* <p>Description:游海东个人开发</p>
* <p>Copyright:Copyright(c)2013</p>
* @author:游海东
* @date:2014-5-10 下午5:17:16
* @version V1.0
*/
public class Province implements Serializable
{
/**
* @Fields  serialVersionUID:序列化
*/
private static final long serialVersionUID = 1L;

/**
* ID
*/
private Long id;

/**
* 省份编码
*/
private String provinceCode;

/**
* 省份名称
*/
private String provinceName;

/**
* 地市编码
*/
private String cityCode;

/**
* 地市名称
*/
private String cityName;

/**
* 县级编码
*/
private String countyCode;

/**
* 县级名称
*/
private String countyName;

/**
* @return the id
*/
public Long getId() {
return id;
}

/**
* @param id the id to set
*/
public void setId(Long id) {
this.id = id;
}

/**
* @return the provinceCode
*/
public String getProvinceCode() {
return provinceCode;
}

/**
* @param provinceCode the provinceCode to set
*/
public void setProvinceCode(String provinceCode) {
this.provinceCode = provinceCode;
}

/**
* @return the provinceName
*/
public String getProvinceName() {
return provinceName;
}

/**
* @param provinceName the provinceName to set
*/
public void setProvinceName(String provinceName) {
this.provinceName = provinceName;
}

/**
* @return the cityCode
*/
public String getCityCode() {
return cityCode;
}

/**
* @param cityCode the cityCode to set
*/
public void setCityCode(String cityCode) {
this.cityCode = cityCode;
}

/**
* @return the cityName
*/
public String getCityName() {
return cityName;
}

/**
* @param cityName the cityName to set
*/
public void setCityName(String cityName) {
this.cityName = cityName;
}

/**
* @return the countyCode
*/
public String getCountyCode() {
return countyCode;
}

/**
* @param countyCode the countyCode to set
*/
public void setCountyCode(String countyCode) {
this.countyCode = countyCode;
}

/**
* @return the countyName
*/
public String getCountyName() {
return countyName;
}

/**
* @param countyName the countyName to set
*/
public void setCountyName(String countyName) {
this.countyName = countyName;
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: