📄 dictionary_cityitem.java
字号:
package com.vere.dictionary.item; import java.io.*; public class Dictionary_cityItem implements Serializable { private String id;// private String city_cn_name;//城市中文名称 private String city_en_name;//城市英文名称 private String country_id;//国家 private Dictionary_countryItem dictionary_countryItem;//国家 private String province_id;//省份/大洲 private Dictionary_provinceItem dictionary_provinceItem;//省份/大洲 public Dictionary_cityItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 城市中文名称 */ public String getCity_cn_name() { if(this.city_cn_name==null) this.city_cn_name=""; return this.city_cn_name; } /** * @see 城市中文名称 */ public void setCity_cn_name(String city_cn_name) { this.city_cn_name=city_cn_name; } /** * @see 城市英文名称 */ public String getCity_en_name() { if(this.city_en_name==null) this.city_en_name=""; return this.city_en_name; } /** * @see 城市英文名称 */ public void setCity_en_name(String city_en_name) { this.city_en_name=city_en_name; } /** * @see 国家 */ public String getCountry_id() { if(this.country_id==null) this.country_id=""; return this.country_id; } /** * @see 国家 */ public void setCountry_id(String country_id) { this.country_id=country_id; } /** * @see 国家 */ public Dictionary_countryItem getDictionary_countryItem() { return this.dictionary_countryItem; } /** * @see 国家 */ public void setDictionary_countryItem(Dictionary_countryItem dictionary_countryItem) { this.dictionary_countryItem=dictionary_countryItem; } /** * @see 省份/大洲 */ public String getProvince_id() { if(this.province_id==null) this.province_id=""; return this.province_id; } /** * @see 省份/大洲 */ public void setProvince_id(String province_id) { this.province_id=province_id; } /** * @see 省份/大洲 */ public Dictionary_provinceItem getDictionary_provinceItem() { return this.dictionary_provinceItem; } /** * @see 省份/大洲 */ public void setDictionary_provinceItem(Dictionary_provinceItem dictionary_provinceItem) { this.dictionary_provinceItem=dictionary_provinceItem; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -