From 8f14b9ec0015bdf96c7e7fa8aaa53195db5442ea Mon Sep 17 00:00:00 2001 From: Administrator <15274802129@163.com> Date: Mon, 12 May 2025 16:39:56 +0800 Subject: [PATCH] refactor(mall): 重构签到列表接口返回值 --- src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java index 186c047..f319ed2 100644 --- a/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java +++ b/src/main/java/cc/mrbird/febs/mall/vo/MallGoodsListVo.java @@ -32,6 +32,9 @@ @ApiModelProperty(value = "原价") private String originalPrice; + @ApiModelProperty(value = "积分价格") + private String staticPropPrice; + @ApiModelProperty(value = "现价") private String presentPrice; @@ -74,4 +77,10 @@ @ApiModelProperty(value = "3级代理价格") private BigDecimal levelThreePrice; + + @ApiModelProperty(value = "是否收藏") + private Integer hasCollect; + + @ApiModelProperty(value = "销量排名") + private Integer rank; } -- Gitblit v1.9.1