dojo省份地市级联之省份封装类(一)

news/2024/7/24 10:57:02 标签: java

省份封装类

Province.java

java">/**
 * 省份封装类
 */
package com.you.model;

import java.io.Serializable;

/**
 * @author YHD
 *
 */
public class Province implements Serializable 
{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	/**
	 * ID
	 */
	private String id;
	
	/**
	 * name
	 */
	private String name;

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

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

	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}

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



http://www.niftyadmin.cn/n/1306943.html

相关文章

wordpress显示摘要_在WordPress中突出显示php源代码

wordpress显示摘要The source code highlighting was probably the first feature I was missing in WordPress. I briefly googled my options and decided it would be quicker to add the missing feature myself, since it looked pretty straightforward. 突出显示源代码可…

Python logging日志模块的使用

在实际的开发过程中,为了方便调试程序,记录系统的运行状态及错误等,及时发现系统的问题并快速定位问题,通常会使用日志。下面来介绍下在Python项目中如何使用日志。 Python提供了一个用于记录日志的标准库模块logging&#xff0c…

进入论坛出现403

1、今天登陆论坛,出现以下问题 2、论坛自己回复不能超过三次

dojo拼接成CSV格式字符串

var student "学号,姓名,年龄\n"; for(var i 0;i<resp.items.length;i) { student resp.items[i].id "," resp.items[i].name "," resp.items[i].age "\n"; } console.info(student);

qt 加载样式表_何时真正加载样式表?

qt 加载样式表Often we want to load a CSS file on-demand by inserting a link node. And we want to know when the file finished loading in order to call a callback function for example. 通常&#xff0c;我们想通过插入link节点来按需加载CSS文件。 而且我们想知道…

dojo之dojox/data/CsvStore初始化

dojo之dojox/data/CsvStore初始化 1、var csvStore new dojox.data.CsvStore({url:"student.csv"}); 2、var csvStore new dojox.data.CsvStore({url:"http://localhost:8080/student.csv"}); 3、var csvStore new dojox.data.CsvStore({identifier:&qu…

dojo省份地市级联之地市封装类(二)

dojo省份地市级联之地市封装类 City.java: /*** 地市封装类*/ package com.you.model;import java.io.Serializable;/*** author YHD**/ public class City implements Serializable {/*** */private static final long serialVersionUID 1L;/*** ID*/private String id;/**…

以太网帧有效载荷_减少有效载荷:压缩,缩小,204秒

以太网帧有效载荷2010 update: Lo, the Web Performance Advent Calendar hath moved 2010年更新&#xff1a; Lo&#xff0c; Web Performance Advent Calendar已移动 Dec 11 This post is part of the 2009 performance advent calendar experiment. Stay tuned for the next…