|
@@ -68,6 +68,11 @@ public class MySumAmountDto {
|
|
|
private BigDecimal withdrawableAmount;
|
|
private BigDecimal withdrawableAmount;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ /***
|
|
|
|
|
+ * 提现中
|
|
|
|
|
+ */
|
|
|
|
|
+ @ApiModelProperty(value = "提现中")
|
|
|
|
|
+ private BigDecimal withdrawingAmount;
|
|
|
/***
|
|
/***
|
|
|
* 车险收益
|
|
* 车险收益
|
|
|
*/
|
|
*/
|
|
@@ -78,7 +83,7 @@ public class MySumAmountDto {
|
|
|
public MySumAmountDto() {
|
|
public MySumAmountDto() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public MySumAmountDto(BigDecimal advanceCarInsuranceAmount, BigDecimal paidUpCarInsuranceAmount, BigDecimal sumCarInsuranceAmount, BigDecimal advanceCollectionPromotionFeesAmount, BigDecimal paidPromotionFeesAmount, BigDecimal sumPromotionFeesAmount, BigDecimal withdrawnAmount, BigDecimal withdrawableAmount, BigDecimal sumDrawAmount) {
|
|
|
|
|
|
|
+ public MySumAmountDto(BigDecimal advanceCarInsuranceAmount, BigDecimal paidUpCarInsuranceAmount, BigDecimal sumCarInsuranceAmount, BigDecimal advanceCollectionPromotionFeesAmount, BigDecimal paidPromotionFeesAmount, BigDecimal sumPromotionFeesAmount, BigDecimal withdrawnAmount, BigDecimal withdrawableAmount, BigDecimal sumDrawAmount,BigDecimal withdrawingAmount) {
|
|
|
this.advanceCarInsuranceAmount = advanceCarInsuranceAmount;
|
|
this.advanceCarInsuranceAmount = advanceCarInsuranceAmount;
|
|
|
this.paidUpCarInsuranceAmount = paidUpCarInsuranceAmount;
|
|
this.paidUpCarInsuranceAmount = paidUpCarInsuranceAmount;
|
|
|
this.sumCarInsuranceAmount = sumCarInsuranceAmount;
|
|
this.sumCarInsuranceAmount = sumCarInsuranceAmount;
|
|
@@ -88,5 +93,6 @@ public class MySumAmountDto {
|
|
|
this.withdrawnAmount = withdrawnAmount;
|
|
this.withdrawnAmount = withdrawnAmount;
|
|
|
this.withdrawableAmount = withdrawableAmount;
|
|
this.withdrawableAmount = withdrawableAmount;
|
|
|
this.sumDrawAmount = sumDrawAmount;
|
|
this.sumDrawAmount = sumDrawAmount;
|
|
|
|
|
+ this.withdrawingAmount = withdrawingAmount;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|