📄 goodsbean.java
字号:
package Bean;
// 商品类
public class GoodsBean
{
private String goodsID;
private String goodsName;
private String goodsType;
private int goodsQuantity;
private float goodsPrice;
public void setGoodsID(String ID)
{
this.goodsID = ID;
}
public String getGoodsID()
{
return this.goodsID;
}
public void setGoodsName(String name)
{
this.goodsName = name;
}
public String getGoodsName()
{
return this.goodsName;
}
public void setGoodsType(String type)
{
this.goodsType = type;
}
public String getGoodsType()
{
return this.goodsType;
}
public void setGoodsPrice(float price)
{
this.goodsPrice = price;
}
public float getGoodsPrice()
{
return this.goodsPrice;
}
public void setGoodsQuantity(int quantity)
{
this.goodsQuantity = quantity;
}
public int getGoodsQuantity()
{
return this.goodsQuantity;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -