sales.java
来自「带分页显示的简单例子 Hibernate」· Java 代码 · 共 69 行
JAVA
69 行
package fmq.model.bo;
import java.util.Date;
/**
* Sales generated by MyEclipse Persistence Tools
*/
public class Sales implements java.io.Serializable {
// Fields
private SalesId id;
private Date ordDate;
private Short qty;
private String payterms;
// Constructors
/** default constructor */
public Sales() {
}
/** full constructor */
public Sales(SalesId id, Date ordDate, Short qty, String payterms) {
this.id = id;
this.ordDate = ordDate;
this.qty = qty;
this.payterms = payterms;
}
// Property accessors
public SalesId getId() {
return this.id;
}
public void setId(SalesId id) {
this.id = id;
}
public Date getOrdDate() {
return this.ordDate;
}
public void setOrdDate(Date ordDate) {
this.ordDate = ordDate;
}
public Short getQty() {
return this.qty;
}
public void setQty(Short qty) {
this.qty = qty;
}
public String getPayterms() {
return this.payterms;
}
public void setPayterms(String payterms) {
this.payterms = payterms;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?