discountinfo.java
来自「酒店管理系统 用sh编写的酒店管理系统 毕业设计用的」· Java 代码 · 共 65 行
JAVA
65 行
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 + =
减小字号Ctrl + -
显示快捷键?