From 823778b3f8e3f58f03e68e613634cf5a710e11f5 Mon Sep 17 00:00:00 2001
From: zepengdev <lzpsmith@outlook.com>
Date: Mon, 16 Jun 2025 22:01:45 +0800
Subject: [PATCH] feat(product): 新增商品批量查询接口

---
 oying-system/src/main/java/com/oying/modules/pc/product/view/ProductCustomerView.java |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/pc/product/view/ProductCustomerView.java b/oying-system/src/main/java/com/oying/modules/pc/product/view/ProductCustomerView.java
index 521debc..da2fed3 100644
--- a/oying-system/src/main/java/com/oying/modules/pc/product/view/ProductCustomerView.java
+++ b/oying-system/src/main/java/com/oying/modules/pc/product/view/ProductCustomerView.java
@@ -27,6 +27,12 @@
     @ApiModelProperty(value = "店铺ID")
     private Long storeId;
 
+    @ApiModelProperty(value = "条形码")
+    private String barcode;
+
+    @ApiModelProperty(value = "商品名称")
+    private String name;
+
     @ApiModelProperty(value = "商品标题")
     private String title;
 
@@ -42,6 +48,33 @@
     @ApiModelProperty(value = "销售价格")
     private BigDecimal price;
 
+    @ApiModelProperty(value = "库存数量")
+    private Integer stockQuantity;
+
+    @ApiModelProperty(value = "起售数量")
+    private Integer minPurchaseQuantity;
+
+    @ApiModelProperty(value = "重量(单位:g)")
+    private Integer weight;
+
+    @ApiModelProperty(value = "宽度(单位:厘米)")
+    private Integer width;
+
+    @ApiModelProperty(value = "长度(单位:厘米)")
+    private Integer length;
+
+    @ApiModelProperty(value = "高度(单位:厘米)")
+    private Integer height;
+
+    @ApiModelProperty(value = "是否支持退货")
+    private Integer returns;
+
+    @ApiModelProperty(value = "是否支持自提")
+    private Integer selfPickup;
+
+    @ApiModelProperty(value = "版本号")
+    private Long version;
+
     @ApiModelProperty(value = "月销售量")
     private Integer monthlySales = 0;
 

--
Gitblit v1.9.3