查询支付确认对象列表

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,16 @@
package com.jsowell.adapay.dto;
import lombok.Data;
@Data
public class QueryPaymentConfirmDTO {
/**
* 控制台 主页面应用的app_id
*/
private String wechatAppId;
/**
* Adapay生成的支付对象id
*/
private String paymentId;
}