From 91e9c006a2ce431a5916b137974bd004622eb9fa Mon Sep 17 00:00:00 2001 From: huliguo <2023611923@qq.com> Date: 星期三, 09 四月 2025 20:15:45 +0800 Subject: [PATCH] 用户端代码调整测试 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java | 12 +----------- 1 files changed, 1 insertions(+), 11 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java index 407956e..23c2d46 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java @@ -40,21 +40,11 @@ @TableField("goods_category_id") private Integer goodsCategoryId; - @ApiModelProperty(value = "类型(1=服务商品,2=单品商品)") - @TableField("type") - private Integer type; @ApiModelProperty(value = "限购数量(-1不限购)") @TableField("purchase_limit") private Integer purchaseLimit; - @ApiModelProperty(value = "配送方式(1=自提,2=快递)") - @TableField("distribution_mode") - private String distributionMode; - - @ApiModelProperty(value = "指定门店(1=指定,2=所有)") - @TableField("appoint_store") - private Integer appointStore; @ApiModelProperty(value = "商品简介") @TableField("introduction") @@ -129,7 +119,7 @@ @TableField(exist = false) @ApiModelProperty(value = "指定门店") - private List<GoodsShop> goodsShopList; + private GoodsShop goodsShop; @TableField(exist = false) private String categoryName; -- Gitblit v1.7.1