⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dictionary_cityitem.java

📁 java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理,角色管理,权限) 2.工作流管理 (流程类别,流程) 3.字典管理 (国家,省份,城市,公共数据字典) 4.项目
💻 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 + -