📄 merchantgoodsbean.java
字号:
package com.mole.struts.bean;
public class MerchantGoodsBean {
private String id;
private String storeId;
private String goodsNumber;
private String name;
private String goodsType;
private String price;
private String description;
private String lastUpdate;
private String image;
private String commend;
private String amount;
private String totalAmount;
private String storeName;
private String goodsTypeName;
public String getCommend() {
return commend;
}
public void setCommend(String commend) {
this.commend = commend;
}
public String getGoodsTypeName() {
return goodsTypeName;
}
public void setGoodsTypeName(String goodsTypeName) {
this.goodsTypeName = goodsTypeName;
}
public String getStoreName() {
return storeName;
}
public void setStoreName(String storeName) {
this.storeName = storeName;
}
public MerchantGoodsBean() {
}
public MerchantGoodsBean(String storeId, String goodsNumber, String name,
String goodsType, String price, String description) {
this.storeId = storeId;
this.goodsNumber = goodsNumber;
this.name = name;
this.goodsType = goodsType;
this.price = price;
this.description = description;
}
public String getGoodsNumber() {
return goodsNumber;
}
public void setGoodsNumber(String goodsNumber) {
this.goodsNumber = goodsNumber;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getGoodsType() {
return goodsType;
}
public void setGoodsType(String goodsType) {
this.goodsType = goodsType;
}
public String getPrice() {
return price;
}
public void setPrice(String price) {
this.price = price;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getLastUpdate() {
return lastUpdate;
}
public void setLastUpdate(String lastUpdate) {
this.lastUpdate = lastUpdate;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public String getTotalAmount() {
return totalAmount;
}
public void setTotalAmount(String totalAmount) {
this.totalAmount = totalAmount;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getStoreId() {
return storeId;
}
public void setStoreId(String storeId) {
this.storeId = storeId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -