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

📄 customer.java

📁 网上购物系统 基于jsp实现 运行环境eclipse+My SQL+TomCat
💻 JAVA
字号:
package book.jsj0707.entity;

import java.util.Set;


/**
 * Customer entity.
 * 
 * @author MyEclipse Persistence Tools
 */
public class Customer extends AbstractCustomer implements java.io.Serializable {

	// Constructors

	/** default constructor */
	public Customer() {
	}

	/** minimal constructor */
	public Customer(String name, String password) {
		super(name, password);
	}

	/** full constructor */
	public Customer(String name, String password, String address,
			String postcode, String email, String phonecall, Set orderses) {
		super(name, password, address, postcode, email, phonecall, orderses);
	}

}

⌨️ 快捷键说明

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