oa_book_categoryitem.java

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

JAVA
85
字号
package com.vere.oa.book.item;	import java.io.*;	public class Oa_book_categoryItem implements Serializable	{		private String id;//		private String pid;//上级类别		private String name;//类别名称		private String description;//描述		public Oa_book_categoryItem()		{		}		/**		 * @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 getPid()		{			if(this.pid==null)				this.pid="";			return this.pid;		}		/**		 * @see	上级类别		 */		public void setPid(String pid)		{			this.pid=pid;		}		/**		 * @see	类别名称		 */		public String getName()		{			if(this.name==null)				this.name="";			return this.name;		}		/**		 * @see	类别名称		 */		public void setName(String name)		{			this.name=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 + -
显示快捷键?