📄 cartproduct.java
字号:
package com.sush.webstore.store.domain.beans;
public class CartProduct {
private Product product;
private long quantity;
CartProduct() {
}
CartProduct(Product product, long quantity) {
this.product = (Product) product;
this.quantity = quantity;
}
/**
* @return the product
*/
public Product getProduct() {
return product;
}
/**
* @param product
* the product to set
*/
public void setProduct(Product product) {
this.product = (Product) product;
}
/**
* @return the quantity
*/
public long getQuantity() {
return quantity;
}
/**
* @param quantity
* the quantity to set
*/
public void setQuantity(long quantity) {
this.quantity = quantity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -