📄 businessmeetingroom.java
字号:
package com.wondersgroup.businessmodule.meetingmanage.bo;
import java.sql.Timestamp;
import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
* 会议室关系主表
* @author Li AoHai
* @hibernate.class
* table = "BUSINESS_ASSEMBLY_ROOM"
* dynamic-update = "true"
*/
public class BusinessMeetingRoom extends BaseBo implements Removable {
private long id;
private BusinessMeetingRoomInfo roomInfo; //会议室详细信息
private String operator; //操作者ID
private Timestamp operateT; //操作时间
/**
* @hibernate.id
* column = "ID"
* generator-class = "sequence"
* @hibernate.generator-param
* name = "sequence"
* value = "SQE_ASSEMBLYROOM"
*/
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
/**
* @hibernate.property
* column = "OPERATETIME"
* @return
*/
public Timestamp getOperateT() {
return operateT;
}
public void setOperateT(Timestamp operateT) {
this.operateT = operateT;
}
/**
* @hibernate.property
* column = "OPERATOR"
* @return
*/
public String getOperator() {
return operator;
}
public void setOperator(String operator) {
this.operator = operator;
}
/**
* @hibernate.many-to-one
* column = "ASS_RO_INF"
* class =
* "com.wondersgroup.businessmodule.meetingmanage.bo.BusinessMeetingRoomInfo"
* inverse = "true"
*
* @return
*/
public BusinessMeetingRoomInfo getRoomInfo() {
return roomInfo;
}
public void setRoomInfo(BusinessMeetingRoomInfo roomInfo) {
this.roomInfo = roomInfo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -