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