📄 ware.java
字号:
package BookShop;
public class Ware{
private String id;
private String name;
private int quantity;
private float price;
private float countprice;
public Ware(){
id="";
price=0;
quantity=0;
countprice=0;
}
public void setId (String id){
this.id=id;
}
public String getId(){
return id;
}
public void setName (String name){
this.name=name;
}
public String getName(){
return name;
}
public void setCountprice(float countprice){
this.countprice=countprice;
}
public float getCountprice(){
return countprice;
}
public void setPrice(float price){
this.price=price;
}
public float getPrice(){
return price;
}
public void setQuantity (int quantity){
this.quantity=quantity;
}
public int getQuantity(){
return quantity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -