customer.java

来自「基于myeclipse环境开发的一个包含hibernate实现持久层」· Java 代码 · 共 42 行

JAVA
42
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?