📄 customer.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 + -