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; }