• 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;
    	
    	/**
    	 * name
    	 */
    	private String name;
    	
    	/**
    	 * type
    	 */
    	private String type;
    
    	/**
    	 * @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;
    	}
    
    	/**
    	 * @return the type
    	 */
    	public String getType() {
    		return type;
    	}
    
    	/**
    	 * @param type the type to set
    	 */
    	public void setType(String type) {
    		this.type = type;
    	}
    	
    }
    


  • 相关阅读:
    Hadoop学习资料收集
    sed使用详解
    shell编程001
    电影《无法触碰》
    正则表达式
    I/O重定向与管道
    bash基础知识
    用户权限模型
    Linux文件管理常用命令
    根文件系统详解
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315401.html
Copyright © 2020-2023  润新知