查询支付确认对象列表

This commit is contained in:
2023-08-21 08:52:32 +08:00
parent c0deb56964
commit 3035fdb08f
5 changed files with 172 additions and 6 deletions

View File

@@ -0,0 +1,32 @@
package com.jsowell.adapay.response;
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;
@Data
public class QueryPaymentConfirmDetailResponse {
@JSONField(name = "payment_id")
private String paymentId;
@JSONField(name = "prod_mode")
private String prodMode;
@JSONField(name = "payment_confirms")
private String paymentConfirms;
@JSONField(name = "has_more")
private Boolean hasMore;
@JSONField(name = "app_id")
private String appId;
@JSONField(name = "object")
private String object;
@JSONField(name = "status")
private String status;
static class PaymentConfirm {
}
}