📄 cartitemform.java
字号:
package com.jdon.estore.web.cart;import com.jdon.strutsutil.ModelForm;public class CartItemForm extends ModelForm { private String itemId; private String productId; private String name; private int qty; private float listprice; public String getItemId() { return itemId; } public void setItemId(String itemId) { this.itemId = itemId; } public String getProductId() { return productId; } public void setProductId(String productId) { this.productId = productId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getQty() { return qty; } public void setQty(int qty) { this.qty = qty; } public float getListprice() { return listprice; } public void setListprice(float listprice) { this.listprice = listprice; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -