📄 goodsbean.java
字号:
package taobaoproject;
public class GoodsBean {
private int classID;//类别ID
private String className;//类别名
private int goodsID;//商品ID
private String goodsName;//商品名
private String goodsIntroduce;//商品简介
private String goodsBrand;//商品品牌名
private String goodsUrl;//商品图像
private float marketPrice;//市场价格
private float memberPrice;//会员价格
private String iserfinement;//是否是精品
private String isHot;//IsHot
private String addDate;//进货日期
private String isDiscount;//是否是特价商品
public int getClassID() {
return classID;
}
public String getClassName() {
return className;
}
public int getGoodsID() {
return goodsID;
}
public String getGoodsName() {
return goodsName;
}
public String getGoodsIntroduce() {
return goodsIntroduce;
}
public String getGoodsBrand() {
return goodsBrand;
}
public String getGoodsUrl() {
return goodsUrl;
}
public float getMarketPrice() {
return marketPrice;
}
public float getMemberPrice() {
return memberPrice;
}
public String getIserfinement() {
return iserfinement;
}
public String getIsHot() {
return isHot;
}
public String getAddDate() {
return addDate;
}
public String getIsDiscount() {
return isDiscount;
}
public void setClassID(int classID) {
this.classID = classID;
}
public void setClassName(String className) {
this.className = className;
}
public void setGoodsID(int goodsID) {
this.goodsID = goodsID;
}
public void setGoodsName(String goodsName) {
this.goodsName = goodsName;
}
public void setGoodsIntroduce(String goodsIntroduce) {
this.goodsIntroduce = goodsIntroduce;
}
public void setGoodsBrand(String goodsBrand) {
this.goodsBrand = goodsBrand;
}
public void setGoodsUrl(String goodsUrl) {
this.goodsUrl = goodsUrl;
}
public void setMarketPrice(float marketPrice) {
this.marketPrice = marketPrice;
}
public void setMemberPrice(float memberPrice) {
this.memberPrice = memberPrice;
}
public void setIserfinement(String iserfinement) {
this.iserfinement = iserfinement;
}
public void setIsHot(String isHot) {
this.isHot = isHot;
}
public void setAddDate(String addDate) {
this.addDate = addDate;
}
public void setIsDiscount(String isDiscount) {
this.isDiscount = isDiscount;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -