dojo省份地市级联之地市封装类(二)
发布时间:2020-12-16 21:30:27 所属栏目:百科 来源:网络整理
导读: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
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; } } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |