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

📄 meetingroomapply.java

📁 OA系统实现以下功能: a、个人办公,我的办公桌 b、公文管理 c、工作流程 d、组织管理 e. 权限管理
💻 JAVA
字号:
package com.bjsxt.oa.model;

import java.util.Date;

/**
 * 
 * @author Lee
 * @hibernate.class table="T_MeetingRoomApply"
 */
public class MeetingRoomApply {
	
	public static final String STATUS_APPLY = "A";
	public static final String STATUS_OCCUR = "O";
	
	/**
	 * @hibernate.id
	 * 		generator-class="native"
	 */
	private int id;
	
	/**
	 * @hibernate.many-to-one
	 */
	private MeetingRoom room;
	
	/**
	 * @hibernate.property
	 */
	private Date beginDate;
	
	/**
	 * @hibernate.property
	 */
	private Date endDate;
	
	/**
	 * @hibernate.property
	 */
	private String applyReason;
	
	/**
	 * @hibernate.property
	 */
	private String status;
	
	public String getApplyReason() {
		return applyReason;
	}
	public void setApplyReason(String applyReason) {
		this.applyReason = applyReason;
	}
	public Date getBeginDate() {
		return beginDate;
	}
	public void setBeginDate(Date beginDate) {
		this.beginDate = beginDate;
	}
	public Date getEndDate() {
		return endDate;
	}
	public void setEndDate(Date endDate) {
		this.endDate = endDate;
	}
	public int getId() {
		return id;
	}
	public void setId(int id) {
		this.id = id;
	}
	public MeetingRoom getRoom() {
		return room;
	}
	public void setRoom(MeetingRoom room) {
		this.room = room;
	}
	public String getStatus() {
		return status;
	}
	public void setStatus(String status) {
		this.status = status;
	}
}

⌨️ 快捷键说明

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