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

📄 basedatetypefbo.java

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

import java.util.Set;

import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
 * @author Li AoHai
 * @hibernate.class 
 * table = "BASE_DATETYPE_F" 
 * dynamic-update = "true"
 */
public class BaseDateTypeFBO extends BaseBo implements Removable {
	private long id;   											//主键
	private String name;
	private String description;
	private Set DateTypefs;

	public BaseDateTypeFBO() {
		super();
	}
	
	/**
	* @hibernate.id 
	* column = "ID" 
	* generator-class = "sequence" 
	* @hibernate.generator-param 
	* name = "sequence" 
	* value = "SQE_BASEDATETYPEF"
	*/
	public long getId() {
		return id;
	}
	public void setId(long id) {
		this.id = id;
	}
	
	/**
	 * @hibernate.property 
	 * column = "DESC"
	 * length = "255"
	 * @return
	 */
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
	
	/**
	 * @hibernate.property 
	 * column = "NAME"
	 * length = "50"
	 * @return
	 */
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}

	/**
	 * @hibernate.set 
	 * lazy = "true" 
	 * inverse = "true" 
	 * cascade = "all"
	 * 
	 * @hibernate.collection-key 
	 * column = "DATETYPEF"
	 * 
	 * @hibernate.collection-one-to-many 
	 * class = "com.wondersgroup.basemodule.holidaymanage.bo.BaseDateTypeCBO"
	 * 
	 * @return
	 */
	public Set getDateTypefs() {
		return DateTypefs;
	}
	public void setDateTypefs(Set dateTypefs) {
		DateTypefs = dateTypefs;
	}
}

⌨️ 快捷键说明

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