帮我写一个CommodityBean类 变量有图片地址String类型 类别String类型 编号String类型 名称String类型 数量 String类型 大小String类型,并且有注释
时间: 2024-06-09 12:10:21 浏览: 34
编写一个String类 代码
好的,下面是CommodityBean类的代码:
```
public class CommodityBean {
/**
* 商品图片地址
*/
private String imageUrl;
/**
* 商品类别
*/
private String category;
/**
* 商品编号
*/
private String code;
/**
* 商品名称
*/
private String name;
/**
* 商品数量
*/
private String quantity;
/**
* 商品大小
*/
private String size;
// 构造方法
public CommodityBean(String imageUrl, String category, String code, String name, String quantity, String size) {
this.imageUrl = imageUrl;
this.category = category;
this.code = code;
this.name = name;
this.quantity = quantity;
this.size = size;
}
// Getters 和 Setters 方法
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getQuantity() {
return quantity;
}
public void setQuantity(String quantity) {
this.quantity = quantity;
}
public String getSize() {
return size;
}
public void setSize(String size) {
this.size = size;
}
}
```
希望对您有所帮助!
阅读全文