📄 sales.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -