📄 orderform.java
字号:
package com.briup.bean;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Orderform generated by MyEclipse - Hibernate Tools
*/
public class Orderform implements java.io.Serializable {
// Fields
private Integer id;
private RegisterForm customer;
private Double cost;
private Date orderdate;
private Set orderlines = new HashSet(0);
// Constructors
/** default constructor */
public Orderform() {
}
/** full constructor */
public Orderform(RegisterForm customer, Double cost, Date orderdate, Set orderlines) {
this.customer = customer;
this.cost = cost;
this.orderdate = orderdate;
this.orderlines = orderlines;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public RegisterForm getCustomer() {
return this.customer;
}
public void setCustomer(RegisterForm 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 + -