orderbook.java
来自「在线购物 商品管理 用户管理 购物车 订单管理 权限控制」· Java 代码 · 共 96 行
JAVA
96 行
/**
*
*/
package com.qrsx.shop.model;
import java.util.ArrayList;
import java.util.List;
/**
*@Author:李世海
*@Address:青岛软件园
*@Date: Mar 31, 2009
*/
public class OrderBook {
private Integer id;
private Integer orderId;
private Double price;
private Integer amount;
private Integer bookId;
private Book book;
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the orderId
*/
public Integer getOrderId() {
return orderId;
}
/**
* @param orderId the orderId to set
*/
public void setOrderId(Integer orderId) {
this.orderId = orderId;
}
/**
* @return the price
*/
public Double getPrice() {
return price;
}
/**
* @param price the price to set
*/
public void setPrice(Double price) {
this.price = price;
}
/**
* @return the amount
*/
public Integer getAmount() {
return amount;
}
/**
* @param amount the amount to set
*/
public void setAmount(Integer amount) {
this.amount = amount;
}
/**
* @return the bookId
*/
public Integer getBookId() {
return bookId;
}
/**
* @param bookId the bookId to set
*/
public void setBookId(Integer bookId) {
this.bookId = bookId;
}
/**
* @return the book
*/
public Book getBook() {
return book;
}
/**
* @param book the book to set
*/
public void setBook(Book book) {
this.book = book;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?