⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 discountinfo.java

📁 酒店管理系统 用sh编写的酒店管理系统 毕业设计用的
💻 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 + -