cartitembean.java
来自「贯穿案例JSP+JavaBean+Servlet网上订餐系统.希望大家下载下来研」· Java 代码 · 共 30 行
JAVA
30 行
package com.restrant.entity;
public class CartItemBean {
private FoodBean food = null;
private int quantity = 0;
public CartItemBean(FoodBean food, int quantity) {
super();
this.food = food;
this.quantity = quantity;
}
public FoodBean getFood() {
return food;
}
public void setFood(FoodBean food) {
this.food = food;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?