?? orderform.java
字號:
package com.briup.bean;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Orderform generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Orderform implements java.io.Serializable {
// Fields
private Long id;
private Customer customer;
private Double cost;
private Date orderdate;
private Set orderlines = new HashSet(0);
// Constructors
/** default constructor */
public Orderform() {
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Customer getCustomer() {
return customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
public Double getCost() {
return this.cost;
}
public void setCost(Double cost) {
this.cost = cost;
}
public Date getOrderdate() {
return this.orderdate;
}
public void setOrderdate(Date orderdate) {
this.orderdate = orderdate;
}
public Set getOrderlines() {
return this.orderlines;
}
public void setOrderlines(Set orderlines) {
this.orderlines = orderlines;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -