fix
Helius
2023-11-28 d17c81c97145eeae7e599f4e7e4de01955c4fad9
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;
}