From c8fbd36e4c1e2cae4751b8130d62621e9f08beb7 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期四, 05 十二月 2024 14:52:49 +0800 Subject: [PATCH] 12.4 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/vo/GoodsVO.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/vo/GoodsVO.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/vo/GoodsVO.java index 228f113..03308d7 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/vo/GoodsVO.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/vo/GoodsVO.java @@ -17,6 +17,9 @@ @ApiModelProperty(value = "商品名称") private String goodsName; + @ApiModelProperty(value = "限购数量(-1不限购)") + private Integer purchaseLimit; + @ApiModelProperty(value = "类型(1=服务商品,2=单品商品)") private Integer type; @@ -32,6 +35,13 @@ @ApiModelProperty(value = "详情图,多个逗号分隔") private String detailPicture; + @ApiModelProperty(value = "积分支付(0=否,1=是)") + private Integer pointPayment; + + @ApiModelProperty(value = "基础积分") + @TableField("integral") + private Integer integral; + @ApiModelProperty(value = "划线价") private BigDecimal originalPrice; -- Gitblit v1.7.1