You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
2.1 KiB
115 lines
2.1 KiB
package com.example.entity;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 商品信息表
|
|
*/
|
|
public class Goods implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** ID */
|
|
private Integer id;
|
|
/** 分类名称 */
|
|
private String name;
|
|
/** 分类描述 */
|
|
private String description;
|
|
/** 分类图标 */
|
|
private String img;
|
|
private Double price;
|
|
private String unit;
|
|
private Integer count;
|
|
private Integer typeId;
|
|
private Integer businessId;
|
|
private String typeName;
|
|
private String businessName;
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getImg() {
|
|
return img;
|
|
}
|
|
|
|
public void setImg(String img) {
|
|
this.img = img;
|
|
}
|
|
|
|
public Double getPrice() {
|
|
return price;
|
|
}
|
|
|
|
public void setPrice(Double price) {
|
|
this.price = price;
|
|
}
|
|
|
|
public String getUnit() {
|
|
return unit;
|
|
}
|
|
|
|
public void setUnit(String unit) {
|
|
this.unit = unit;
|
|
}
|
|
|
|
public Integer getCount() {
|
|
return count;
|
|
}
|
|
|
|
public void setCount(Integer count) {
|
|
this.count = count;
|
|
}
|
|
|
|
public Integer getTypeId() {
|
|
return typeId;
|
|
}
|
|
|
|
public void setTypeId(Integer typeId) {
|
|
this.typeId = typeId;
|
|
}
|
|
|
|
public Integer getBusinessId() {
|
|
return businessId;
|
|
}
|
|
|
|
public void setBusinessId(Integer businessId) {
|
|
this.businessId = businessId;
|
|
}
|
|
|
|
public String getTypeName() {
|
|
return typeName;
|
|
}
|
|
|
|
public void setTypeName(String typeName) {
|
|
this.typeName = typeName;
|
|
}
|
|
|
|
public String getBusinessName() {
|
|
return businessName;
|
|
}
|
|
|
|
public void setBusinessName(String businessName) {
|
|
this.businessName = businessName;
|
|
}
|
|
}
|