abstractcustomerorder.java
来自「一个很适合初学者的网上书店系统」· Java 代码 · 共 108 行
JAVA
108 行
package com.ascent.bean;
/**
* AbstractCustomerorder generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractCustomerorder implements java.io.Serializable {
// Fields
private Integer custorderId;
private String custorderName;
private String telephone;
private String address;
private Integer post;
private String email;
private Integer orderId;
// Constructors
/** default constructor */
public AbstractCustomerorder() {
}
/** full constructor */
public AbstractCustomerorder(Integer custorderId, String custorderName, String telephone, String address, Integer post, String email, Integer orderId) {
this.custorderId = custorderId;
this.custorderName = custorderName;
this.telephone = telephone;
this.address = address;
this.post = post;
this.email = email;
this.orderId = orderId;
}
// Property accessors
public Integer getCustorderId() {
return this.custorderId;
}
public void setCustorderId(Integer custorderId) {
this.custorderId = custorderId;
}
public String getCustorderName() {
return this.custorderName;
}
public void setCustorderName(String custorderName) {
this.custorderName = custorderName;
}
public String getTelephone() {
return this.telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public Integer getPost() {
return this.post;
}
public void setPost(Integer post) {
this.post = post;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public Integer getOrderId() {
return this.orderId;
}
public void setOrderId(Integer orderId) {
this.orderId = orderId;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?