新增 后管查询运营商订单报表V2 接口

This commit is contained in:
Lemon
2023-08-28 14:58:34 +08:00
parent 192315089b
commit 282194b761
10 changed files with 245 additions and 4 deletions

View File

@@ -0,0 +1,49 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
/**
* 运营商清分账单VO
*
* @author Lemon
* @Date 2023/8/28 13:30
*/
@Data
public class MerchantClearingBillVO {
// 交易日期
private String tradeDate;
// 账单状态
private String billStatus;
// 清分账单编号
private String clearingBillCode;
// 清分时间
private String clearingTime;
// 运营商id
private String merchantId;
// 运营商名称
private String merchantName;
// 应收金额
private String receivableAmount;
// 应清分金额
private String shouldClearingAmount;
// 实际清分金额
private String actualClearingAmount;
// 手续费
private String feeAmount;
// 可提现金额
private String withdrawAbleAmount;
// 提现单号
private String withdrawCode;
}

View File

@@ -45,5 +45,8 @@ public class MerchantOrderReportVO {
// 虚拟金额
private BigDecimal virtualAmount;
// 白名单支付次数
private BigDecimal whitelistPaymentsNum;
}
}