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

来源:互联网 发布:mac系统能做什么 编辑:程序博客网 时间:2024/05/17 23:54

省份封装类

Province.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;}}


1 0
原创粉丝点击