mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
查询支付确认对象列表
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user