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

📄 basedaterangebo.java

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

import java.sql.Timestamp;
import java.util.Date;

import com.wondersgroup.basemodule.bo.AreaBo;
import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
 * @author Li AoHai
 * @hibernate.class 
 * table = "BASE_DATERANGE" 
 * dynamic-update = "true"
 */
public class BaseDateRangeBO extends BaseBo implements Removable {

	private long id;
	private AreaBo areaBO;
	private Timestamp operateTime;
	private String operator;
	private BaseDateRangeTypeBO rangeType;
	private Date expStartDate;
	private Date expEndDate;
	private int expInterval;
	private Date actStartDate;
	private Date actEndDate;
	private int actInterval;
	private String description;
	
	public BaseDateRangeBO() {
		super();
	}
	
	/**
	* @hibernate.id 
	* column = "RANGE_ID" 
	* generator-class = "sequence" 
	* @hibernate.generator-param 
	* name = "sequence" 
	* value = "SQE_BASEDATERANGE"
	*/
	public long getId() {
		return id;
	}
	public void setId(long id) {
		this.id = id;
	}
	
	/**
	 * @hibernate.property 
	 * column = "ACT_END_DATE"
	 * @return
	 */
	public Date getActEndDate() {
		return actEndDate;
	}
	public void setActEndDate(Date actEndDate) {
		this.actEndDate = actEndDate;
	}
	
	/**
	 * @hibernate.property 
	 * column = "ACT_INTERVAL"
	 * @return
	 */
	public int getActInterval() {
		return actInterval;
	}
	public void setActInterval(int actInterval) {
		this.actInterval = actInterval;
	}
	
	/**
	 * @hibernate.property 
	 * column = "ACT_START_DATE"
	 * @return
	 */
	public Date getActStartDate() {
		return actStartDate;
	}
	public void setActStartDate(Date actStartDate) {
		this.actStartDate = actStartDate;
	}
	
	/**
	 * @hibernate.many-to-one 
	 * column = "AREAID" 
	 * class = "com.wondersgroup.basemodule.bo.AreaBo" 
	 * inverse = "true"
	 * 
	 * @return
	 */
	public AreaBo getAreaBO() {
		return areaBO;
	}
	public void setAreaBO(AreaBo areaBO) {
		this.areaBO = areaBO;
	}
	
	/**
	 * @hibernate.property 
	 * column = "DESC"
	 * length = "255"
	 * @return
	 */
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	
	/**
	 * @hibernate.property 
	 * column = "EXP_END_DATE"
	 * @return
	 */
	public Date getExpEndDate() {
		return expEndDate;
	}
	public void setExpEndDate(Date expEndDate) {
		this.expEndDate = expEndDate;
	}
	
	/**
	 * @hibernate.property 
	 * column = "EXP_INTERVAL"
	 * @return
	 */
	public int getExpInterval() {
		return expInterval;
	}	
	public void setExpInterval(int expInterval) {
		this.expInterval = expInterval;
	}
	
	/**
	 * @hibernate.property 
	 * column = "EXP_START_DATE"
	 * @return
	 */
	public Date getExpStartDate() {
		return expStartDate;
	}
	public void setExpStartDate(Date expStartDate) {
		this.expStartDate = expStartDate;
	}
	
	/**
	 * @hibernate.property 
	 * column = "OPERATETIME"
	 * @return
	 */
	public Timestamp getOperateTime() {
		return operateTime;
	}
	public void setOperateTime(Timestamp operateTime) {
		this.operateTime = operateTime;
	}
	
	/**
	 * @hibernate.property 
	 * column = "OPERATOR"
	 * length = "50"
	 * @return
	 */
	public String getOperator() {
		return operator;
	}
	public void setOperator(String operator) {
		this.operator = operator;
	}
	
	/**
	 * @hibernate.many-to-one 
	 * column = "RANGE_TYPE" 
	 * class = "com.wondersgroup.basemodule.holidaymanage.bo.BaseDateRangeTypeBO" 
	 * inverse = "true"
	 * lazy = "false"
	 * @return
	 */
	public BaseDateRangeTypeBO getRangeType() {
		return rangeType;
	}
	public void setRangeType(BaseDateRangeTypeBO rangeType) {
		this.rangeType = rangeType;
	}
}

⌨️ 快捷键说明

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