|
@@ -4,7 +4,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
-public class SporadicPayDto {
|
|
|
+public class SporadicPayDto extends PayParamBasicDto {
|
|
|
@ApiModelProperty(value = "金额",required = false)
|
|
|
private BigDecimal amount;
|
|
|
|
|
@@ -17,19 +17,6 @@ public class SporadicPayDto {
|
|
|
@ApiModelProperty(value = "购买数量",required = false)
|
|
|
private Integer num = 1;
|
|
|
|
|
|
- private boolean isRepeatPay;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "是否余额支付",required = false)
|
|
|
- Boolean isUseBalancePayment = false;
|
|
|
-
|
|
|
- public boolean getIsRepeatPay() {
|
|
|
- return isRepeatPay;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIsRepeatPay(boolean repeatPay) {
|
|
|
- isRepeatPay = repeatPay;
|
|
|
- }
|
|
|
-
|
|
|
public BigDecimal getAmount() {
|
|
|
return amount;
|
|
|
}
|
|
@@ -54,14 +41,6 @@ public class SporadicPayDto {
|
|
|
this.sporadicId = sporadicId;
|
|
|
}
|
|
|
|
|
|
- public Boolean getUseBalancePayment() {
|
|
|
- return isUseBalancePayment;
|
|
|
- }
|
|
|
-
|
|
|
- public void setUseBalancePayment(Boolean useBalancePayment) {
|
|
|
- isUseBalancePayment = useBalancePayment;
|
|
|
- }
|
|
|
-
|
|
|
public Integer getNum() {
|
|
|
return num;
|
|
|
}
|