fix
Helius
2023-12-23 a3bdb0cdb21e27eb52ac5753c0cdc8c3d4a74232
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;
}