mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-07 04:58:28 +00:00
ref 局部微调
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
|
||||
<groupId>cn.daxpay.single</groupId>
|
||||
<artifactId>daxpay-single-sdk</artifactId>
|
||||
<version>2.0.5</version>
|
||||
<version>2.0.6</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<!-- 项目信息 -->
|
||||
<name>daxpay-single-sdk</name>
|
||||
<description>daxpay-single-sdk 是 daxpay单商户版的JavaSDK,用于业务系统快速接入到支付网关中</description>
|
||||
<url>https://gitee.com/single/daxpay</url>
|
||||
<url>https://gitee.com/dromara/dax-pay</url>
|
||||
|
||||
<!-- 许可证 -->
|
||||
<licenses>
|
||||
@@ -36,7 +36,7 @@
|
||||
<scm>
|
||||
<connection>scm:git:git@gitee.com:dromara/daxpay.git</connection>
|
||||
<developerConnection>scm:git:git@gitee.com:dromara/daxpay.git</developerConnection>
|
||||
<url>https://gitee.com/dromara/daxpay</url>
|
||||
<url>https://gitee.com/dromara/dax-pay</url>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
@@ -1,6 +1,7 @@
|
||||
package cn.daxpay.single.sdk.model.sync;
|
||||
|
||||
import cn.daxpay.single.sdk.code.PaySyncStatusEnum;
|
||||
import cn.daxpay.single.sdk.code.RefundSyncStatusEnum;
|
||||
import cn.daxpay.single.sdk.net.DaxPayResponseModel;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
@@ -17,9 +18,10 @@ import lombok.ToString;
|
||||
public class SyncModel extends DaxPayResponseModel {
|
||||
|
||||
/**
|
||||
* 支付订单同步结果
|
||||
* 同步结果
|
||||
* @see PaySyncStatusEnum
|
||||
* @see RefundSyncStatusEnum
|
||||
*/
|
||||
private Boolean status;
|
||||
private String status;
|
||||
|
||||
}
|
||||
|
@@ -6,7 +6,7 @@ import lombok.Setter;
|
||||
import lombok.ToString;
|
||||
|
||||
/**
|
||||
*
|
||||
* 响应参数接收类
|
||||
* @author xxm
|
||||
* @since 2024/2/2
|
||||
*/
|
||||
|
@@ -31,9 +31,8 @@ public class RefundOrderSyncTest {
|
||||
@Test
|
||||
public void testPay() {
|
||||
RefundSyncParam param = new RefundSyncParam();
|
||||
|
||||
param.setRefundNo("R0001");
|
||||
|
||||
param.setRefundNo("DEVR24051020530263000002");
|
||||
param.setClientIp("127.0.0.1");
|
||||
DaxPayResult<SyncModel> execute = DaxPayKit.execute(param);
|
||||
System.out.println(execute);
|
||||
System.out.println(execute.getData());
|
||||
|
Reference in New Issue
Block a user