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

📄 orders.java

📁 有简单的网上书店需求及设计流程
💻 JAVA
字号:
package org.wiely.vo;

// default package

/**
 * Orders generated by MyEclipse Persistence Tools
 */

@SuppressWarnings("serial")
public class Orders implements java.io.Serializable {

	// Fields

	private Integer orderid;
	private Book book;
	private OrderUser orderuser;
	private int bookacount;

	// Constructors

	/** default constructor */
	public Orders() {
	}

	/** minimal constructor */
	public Orders(int bookacount) {
		this.bookacount = bookacount;
	}

	/** full constructor */
	public Orders(Book book, OrderUser orderuser, int bookacount) {
		this.book = book;
		this.orderuser = orderuser;
		this.bookacount = bookacount;
	}

	// Property accessors

	public Integer getOrderid() {
		return this.orderid;
	}

	public void setOrderid(Integer orderid) {
		this.orderid = orderid;
	}

	public Book getBook() {
		return this.book;
	}

	public void setBook(Book book) {
		this.book = book;
	}

	public OrderUser getOrderuser() {
		return this.orderuser;
	}

	public void setOrderuser(OrderUser orderuser) {
		this.orderuser = orderuser;
	}

	public int getBookacount() {
		return this.bookacount;
	}

	public void setBookacount(int bookacount) {
		this.bookacount = bookacount;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -