shoppingcartdto.java

来自「《精通SOA:基于服务总线的Struts+EJB+Web Service整合应用」· Java 代码 · 共 29 行

JAVA
29
字号
package com.bkstore.model.service.dto;

public class ShoppingCartDTO {
	
  private BookDTO bookDTO;
  private int quantity;
  private int bookID;
public BookDTO getBookDTO() {
	return bookDTO;
}
public void setBookDTO(BookDTO bookDTO) {
	this.bookDTO = bookDTO;
}
public int getBookID() {
	return bookID;
}
public void setBookID(int bookID) {
	this.bookID = bookID;
}
public int getQuantity() {
	return quantity;
}
public void setQuantity(int quantity) {
	this.quantity = quantity;
}


}

⌨️ 快捷键说明

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