From 32d38feada2a84606b14016abcddf34ec8fe9e3e Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Tue, 27 May 2025 14:19:25 +0800 Subject: [PATCH] refactor(mall): 优化会员标签查询逻辑 --- src/main/java/cc/mrbird/febs/mall/vo/GoodsDetailsSkuVo.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/vo/GoodsDetailsSkuVo.java b/src/main/java/cc/mrbird/febs/mall/vo/GoodsDetailsSkuVo.java index 26202fe..fe9b190 100644 --- a/src/main/java/cc/mrbird/febs/mall/vo/GoodsDetailsSkuVo.java +++ b/src/main/java/cc/mrbird/febs/mall/vo/GoodsDetailsSkuVo.java @@ -32,6 +32,9 @@ @ApiModelProperty(value = "原价") private BigDecimal originalPrice; + @ApiModelProperty(value = "积分价格") + private String staticPropPrice; + @ApiModelProperty(value = "现价") private BigDecimal presentPrice; @@ -46,4 +49,13 @@ @ApiModelProperty(value = "重量") private BigDecimal skuGoodsWeight; + + @ApiModelProperty(value = "1级代理价格") + private BigDecimal levelOnePrice; + + @ApiModelProperty(value = "2级代理价格") + private BigDecimal levelTwoPrice; + + @ApiModelProperty(value = "3级代理价格") + private BigDecimal levelThreePrice; } -- Gitblit v1.9.1