📄 discounts.java
字号:
package fmq.model.bo;
/**
* Discounts generated by MyEclipse Persistence Tools
*/
public class Discounts implements java.io.Serializable {
// Fields
private DiscountsId id;
private Stores stores;
// Constructors
/** default constructor */
public Discounts() {
}
/** minimal constructor */
public Discounts(DiscountsId id) {
this.id = id;
}
/** full constructor */
public Discounts(DiscountsId id, Stores stores) {
this.id = id;
this.stores = stores;
}
// Property accessors
public DiscountsId getId() {
return this.id;
}
public void setId(DiscountsId id) {
this.id = id;
}
public Stores getStores() {
return this.stores;
}
public void setStores(Stores stores) {
this.stores = stores;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -