package com.ishop.model.vo;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 商品详情,商户关联商品信息。
|
* @date 2023-07-04
|
*/
|
public class ProMerchantProductVo {
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getImage() {
|
return image;
|
}
|
|
public void setImage(String image) {
|
this.image = image;
|
}
|
|
public Double getPrice() {
|
return price;
|
}
|
|
public void setPrice(Double price) {
|
this.price = price;
|
}
|
|
public Integer getSales() {
|
return sales;
|
}
|
|
public void setSales(Integer sales) {
|
this.sales = sales;
|
}
|
|
public Integer getFicti() {
|
return ficti;
|
}
|
|
public void setFicti(Integer ficti) {
|
this.ficti = ficti;
|
}
|
|
// @ApiModelProperty(value = "商品id")
|
private Long id;
|
|
// @ApiModelProperty(value = "商品名称")
|
private String name;
|
|
// @ApiModelProperty(value = "商品图片")
|
private String image;
|
|
// @ApiModelProperty(value = "商品价格")
|
private Double price;
|
|
// @ApiModelProperty(value = "销量")
|
private Integer sales;
|
|
// @ApiModelProperty(value = "虚拟销量")
|
private Integer ficti;
|
}
|