📄 productordered.java
字号:
package com.ajaxlab.ajax;
public class ProductOrdered {
private String productName = "";
private int count = 0;
private String price = "0";
public ProductOrdered() {
}
public ProductOrdered(String productName,int count, String price) {
this.productName = productName;
this.count = count;
this.price = price;
}
public String getProductName() {
return this.productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public int getCount() {
return this.count;
}
public void setCount(int count) {
this.count = count;
}
public String getPrice() {
return this.price;
}
public void setPrice(String price) {
this.price = price;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -