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

📄 customer.java

📁 基于myeclipse环境开发的一个包含hibernate实现持久层
💻 JAVA
字号:
/* * Created Wed Jul 27 12:01:58 CEST 2005 by MyEclipse Hibernate Tool. */package de.laliluna.library;import java.io.Serializable;import java.util.List;/** * A class that represents a row in the 'customer' table. This class may be * customized as it is never re-generated after being created. */public class Customer extends AbstractCustomer implements Serializable {	private List books;	public List getBooks() {		return books;	}	public void setBooks(List books) {		this.books = books;	}	/**	 * Simple constructor of Customer instances.	 */	public Customer() {	}	/**	 * Constructor of Customer instances given a simple primary key.	 * 	 * @param id	 */	public Customer(java.lang.Integer id) {		super(id);	}	/* Add customized code below */}

⌨️ 快捷键说明

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