📄 discountinfo.java
字号:
package com.chen.modle.discountinfoDAO;
/**
* Discountinfo entity.
*
* @author MyEclipse Persistence Tools
*/
public class Discountinfo implements java.io.Serializable {
// Fields
private Integer discountid;
private Float discount;
private Integer minpoint;
private Integer maxpoint;
// Constructors
/** default constructor */
public Discountinfo() {
}
/** full constructor */
public Discountinfo(Float discount, Integer minpoint, Integer maxpoint) {
this.discount = discount;
this.minpoint = minpoint;
this.maxpoint = maxpoint;
}
// Property accessors
public Integer getDiscountid() {
return this.discountid;
}
public void setDiscountid(Integer discountid) {
this.discountid = discountid;
}
public Float getDiscount() {
return this.discount;
}
public void setDiscount(Float discount) {
this.discount = discount;
}
public Integer getMinpoint() {
return this.minpoint;
}
public void setMinpoint(Integer minpoint) {
this.minpoint = minpoint;
}
public Integer getMaxpoint() {
return this.maxpoint;
}
public void setMaxpoint(Integer maxpoint) {
this.maxpoint = maxpoint;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -