查询支付确认对象列表

This commit is contained in:
2023-08-21 16:19:33 +08:00
parent 55104d4c6e
commit 295d11ea62
8 changed files with 141 additions and 20 deletions

View File

@@ -0,0 +1,43 @@
package com.jsowell.pile.vo.web;
import lombok.*;
/**
* 订单结算详情
*/
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class OrderSettleDetailVO {
/**
* 订单编号
*/
private String orderCode;
/**
* 结算金额
*/
private String settleAmount;
/**
* 清分状态
*/
private String clearingStatus;
/**
* 清分账单编号
*/
private String clearingBillCode;
/**
* 提现状态
*/
private String withdrawStatus;
/**
* 提现编号
*/
private String withdrawCode;
}