dojo省份地市级联之地市封装类(二)
生活随笔
收集整理的這篇文章主要介紹了
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;}}
總結
以上是生活随笔為你收集整理的dojo省份地市级联之地市封装类(二)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: dojo省份地市级联之地市Dao接口类(
- 下一篇: SpringCloud学习--微服务架构