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

📄 orderitemtable.java

📁 一个ssh的网上购物系统
💻 JAVA
字号:
package com.xfaccp.bookonline.hib.dto;

import com.xfaccp.bookonline.hib.dto.base.BaseHibernateDTO;

/**
 * OrderitemTable generated by MyEclipse - Hibernate Tools
 */

public class OrderitemTable extends BaseHibernateDTO {

	// Fields

	private Integer orderitemid;

	private BookTable bookTable;

	private OrderTable orderTable;

	private Integer bookid;

	private Integer orderid;

	private Integer quantity;

	// Constructors

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

	/** minimal constructor */
	public OrderitemTable(BookTable bookTable, OrderTable orderTable) {
		this.bookTable = bookTable;
		this.orderTable = orderTable;
	}

	/** full constructor */
	public OrderitemTable(BookTable bookTable, OrderTable orderTable,
			Integer quantity) {
		this.bookTable = bookTable;
		this.orderTable = orderTable;
		this.quantity = quantity;
	}

	// Property accessors

	public Integer getOrderitemid() {
		return this.orderitemid;
	}

	public void setOrderitemid(Integer orderitemid) {
		this.orderitemid = orderitemid;
	}

	public BookTable getBookTable() {
		return this.bookTable;
	}

	public void setBookTable(BookTable bookTable) {
		this.bookTable = bookTable;
	}

	public OrderTable getOrderTable() {
		return this.orderTable;
	}

	public void setOrderTable(OrderTable orderTable) {
		this.orderTable = orderTable;
	}

	public Integer getQuantity() {
		return this.quantity;
	}

	public void setQuantity(Integer quantity) {
		this.quantity = quantity;
	}

	public Integer getBookid() {
		return bookid;
	}

	public void setBookid(Integer bookid) {
		this.bookid = bookid;
	}

	public Integer getOrderid() {
		return orderid;
	}

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

}

⌨️ 快捷键说明

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