oa_meeting_roomitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 140 行
JAVA
140 行
package com.vere.oa.meeting.item; import java.io.*; public class Oa_meeting_roomItem implements Serializable { private String id;// private String name;//会议室名称 private String num;//容纳人数 private String address;//地点 private String description;//描述 private String instruction;//说明 private String fileExt;//图片 public Oa_meeting_roomItem() { } /** * @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 getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 会议室名称 */ public void setName(String name) { this.name=name; } /** * @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 getAddress() { if(this.address==null) this.address=""; return this.address; } /** * @see 地点 */ public void setAddress(String address) { this.address=address; } /** * @see 描述 */ public String getDescription() { if(this.description==null) this.description=""; return this.description; } /** * @see 描述 */ public void setDescription(String description) { this.description=description; } /** * @see 说明 */ public String getInstruction() { if(this.instruction==null) this.instruction=""; return this.instruction; } /** * @see 说明 */ public void setInstruction(String instruction) { this.instruction=instruction; } /** * @see 图片 */ public String getFileExt() { if(this.fileExt==null) this.fileExt=""; return this.fileExt; } /** * @see 图片 */ public void setFileExt(String fileExt) { this.fileExt=fileExt; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?