dictionary_countryitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 85 行
JAVA
85 行
package com.vere.dictionary.item; import java.io.*; public class Dictionary_countryItem implements Serializable { private String id;//编号 private String id_no;//编号 private String country_cn_name;//国家中文名称 private String country_en_name;//国家英文名称 public Dictionary_countryItem() { } /** * @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 getId_no() { if(this.id_no==null) this.id_no=""; return this.id_no; } /** * @see 编号 */ public void setId_no(String id_no) { this.id_no=id_no; } /** * @see 国家中文名称 */ public String getCountry_cn_name() { if(this.country_cn_name==null) this.country_cn_name=""; return this.country_cn_name; } /** * @see 国家中文名称 */ public void setCountry_cn_name(String country_cn_name) { this.country_cn_name=country_cn_name; } /** * @see 国家英文名称 */ public String getCountry_en_name() { if(this.country_en_name==null) this.country_en_name=""; return this.country_en_name; } /** * @see 国家英文名称 */ public void setCountry_en_name(String country_en_name) { this.country_en_name=country_en_name; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?