oa_dictionaryitem.java

来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 103 行

JAVA
103
字号
package com.vere.manager.item;	import java.io.*;	public class Oa_dictionaryItem implements Serializable	{		private String id;//		private String num;//编号		private String code;//代码		private String code_name;//名称		private String description;//描述		public Oa_dictionaryItem()		{		}		/**		 * @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 getNum()		{			if(this.num==null)				this.num="";			return this.num;		}		/**		 * @see	编号		 */		public void setNum(String num)		{			this.num=num;		}		/**		 * @see	代码		 */		public String getCode()		{			if(this.code==null)				this.code="";			return this.code;		}		/**		 * @see	代码		 */		public void setCode(String code)		{			this.code=code;		}		/**		 * @see	名称		 */		public String getCode_name()		{			if(this.code_name==null)				this.code_name="";			return this.code_name;		}		/**		 * @see	名称		 */		public void setCode_name(String code_name)		{			this.code_name=code_name;		}		/**		 * @see	描述		 */		public String getDescription()		{			if(this.description==null)				this.description="";			return this.description;		}		/**		 * @see	描述		 */		public void setDescription(String description)		{			this.description=description;		}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?