📄 orderbook.java
字号:
/**
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -