zoukankan      html  css  js  c++  java
  • 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;
    	}
    	
    }
    


  • 相关阅读:
    quratz数据存储
    quratz线程
    scheduler 基本原理
    一致性哈希算法
    高并发流量控制
    049 DSL语句
    048 SparkSQL自定义UDAF函数
    047 SparkSQL自定义UDF函数
    Quratz的理解
    046 SparlSQL中的函数
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13315401.html
Copyright © 2011-2022 走看看