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

📄 businessmeeting.java

📁 一段很有意义的源码,看了就知道,不信试一试啊!
💻 JAVA
字号:
package com.wondersgroup.businessmodule.meetingmanage.bo;

import java.sql.Timestamp;
import java.util.Set;

import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;

/**
 * 会议记录表
 * @author Li AoHai
 * @hibernate.class 
 * table = "BUSINESS_ASSEMBLY" 
 * dynamic-update = "true"
 */
public class BusinessMeeting {

	private String id;							//会议表主键,保存yyyymmddxxx格式会议编号
	private BusinessMeetingInfo meetingInfo; 	//FK 关联会议记录详细信息
	private long status;						//标示符,表示当前请求所处的状态:0 待发送、1 待审批、2审批未通过 3、审批通过 4、发布状态
	private String operator;					//逻辑删除操作人
	private Timestamp operateT;					//逻辑删除操作时间,当执行操作时,程序获取系统当前时间。
	private Set permission;						//关联审批
	private long userId;						//用户ID
	private long removed;
	
	/**
	* @hibernate.id 
	* column = "ID"
	* @hibernate.id generator-class="assigned"
	*/
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	
	/**
	 * @hibernate.many-to-one 
	 * column = "ASS_INFO_ID" 
	 * class = 
	 * "com.wondersgroup.businessmodule.meetingmanage.bo.BusinessMeetingInfo" 
	 * inverse = "true"
	 * 
	 * @return
	 */
	public BusinessMeetingInfo getMeetingInfo() {
		return meetingInfo;
	}
	public void setMeetingInfo(BusinessMeetingInfo meetingInfo) {
		this.meetingInfo = meetingInfo;
	}
	
	/**
	 * @hibernate.property 
	 * column = "OPERATETIME"
	 * @return
	 */
	public Timestamp getOperateT() {
		return operateT;
	}
	public void setOperateT(Timestamp operateT) {
		this.operateT = operateT;
	}
	
	/**
	 * @hibernate.property 
	 * column = "OPERATOR"
	 * length = "20"
	 * @return
	 */
	public String getOperator() {
		return operator;
	}
	public void setOperator(String operator) {
		this.operator = operator;
	}
	
	/**
	 * @hibernate.property 
	 * column = "STATUS"
	 * @return
	 */
	public long getStatus() {
		return status;
	}
	public void setStatus(long status) {
		this.status = status;
	}
	
	/**
	 * @hibernate.set 
	 * lazy = "true" 
	 * inverse = "true" 
	 * cascade = "all"
	 * 
	 * @hibernate.collection-key 
	 * column = "ASS_ID"
	 * 
	 * @hibernate.collection-one-to-many 
	 * class = 
	 * "com.wondersgroup.businessmodule.meetingmanage.bo.BusinessMeetingPermission"
	 * 
	 * @return
	 */
	public Set getPermission() {
		return permission;
	}
	public void setPermission(Set permission) {
		this.permission = permission;
	}
	
	/**
	 * @hibernate.property 
	 * column = "OWNERID"
	 * @return
	 */
	public long getUserId() {
		return userId;
	}
	public void setUserId(long userId) {
		this.userId = userId;
	}
	/**
	 * @hibernate.property 
	 * column = "REMOVED"
	 * @return
	 */
	public long getRemoved() {
		return removed;
	}
	public void setRemoved(long removed) {
		this.removed = removed;
	}
}

⌨️ 快捷键说明

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