package com.oying.modules.pc.product.view;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 简单商品vo
|
* @author lzp
|
* @date 2025-04-25
|
*/
|
public class ProductSimpleView {
|
|
private Long productId;
|
private String productTitle;
|
private String mainImage;
|
private BigDecimal price;
|
private BigDecimal originalPrice; // 原价(用于显示划线价)
|
//private Double rating; // 评分
|
//private Integer monthlySales; // 月销量
|
|
|
}
|