📄 meetingroomapply.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 + -