From 83233c76c9dd08e54d26694805be88e563e2fe12 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Tue, 07 Nov 2023 17:54:15 +0800 Subject: [PATCH] 短信发送 --- src/main/java/cc/mrbird/febs/mall/dto/CouponRuleAddDto.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/dto/CouponRuleAddDto.java b/src/main/java/cc/mrbird/febs/mall/dto/CouponRuleAddDto.java index 7a2c95b..1e08024 100644 --- a/src/main/java/cc/mrbird/febs/mall/dto/CouponRuleAddDto.java +++ b/src/main/java/cc/mrbird/febs/mall/dto/CouponRuleAddDto.java @@ -5,6 +5,8 @@ import javax.validation.constraints.*; import java.math.BigDecimal; +import java.util.List; + @Data @ApiModel(value = "CouponRuleAddDto", description = "参数类") public class CouponRuleAddDto { @@ -27,4 +29,7 @@ @DecimalMax(value = "10000", inclusive = false, message = "字段不能大于10000") private BigDecimal realAmount; + //优惠卷IDs + private List<Long> goodsIds; + } -- Gitblit v1.9.1