?? abstractcustomerorder.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -