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

📄 discounts.java

📁 带分页显示的简单例子 Hibernate
💻 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 + -