|
@@ -1,12 +1,9 @@
|
|
package cn.iocoder.yudao.module.product.controller.admin.history.vo;
|
|
package cn.iocoder.yudao.module.product.controller.admin.history.vo;
|
|
|
|
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
|
-import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
|
|
|
|
-import java.time.LocalDateTime;
|
|
|
|
-
|
|
|
|
import static io.swagger.v3.oas.annotations.media.Schema.RequiredMode.REQUIRED;
|
|
import static io.swagger.v3.oas.annotations.media.Schema.RequiredMode.REQUIRED;
|
|
|
|
|
|
@Schema(description = "管理后台 - 商品浏览记录 Response VO")
|
|
@Schema(description = "管理后台 - 商品浏览记录 Response VO")
|
|
@@ -31,4 +28,10 @@ public class ProductBrowseHistoryRespVO {
|
|
@Schema(description = "商品单价", example = "100")
|
|
@Schema(description = "商品单价", example = "100")
|
|
private Integer price;
|
|
private Integer price;
|
|
|
|
|
|
|
|
+ @Schema(description = "商品销量", example = "100")
|
|
|
|
+ private Integer salesCount;
|
|
|
|
+
|
|
|
|
+ @Schema(description = "库存", example = "100")
|
|
|
|
+ private Integer stock;
|
|
|
|
+
|
|
}
|
|
}
|