mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-05 20:18:22 +00:00
feat 支付查询相关接口
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package cn.bootx.platform.daxpay.param.pay;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 支付订单查询参数
|
||||
* @author xxm
|
||||
* @since 2024/1/15
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
@Schema(title = "支付订单查询参数")
|
||||
public class QueryPayOrderParam extends PayCommonParam{
|
||||
|
||||
@Schema(description = "支付号")
|
||||
private Long paymentId;
|
||||
|
||||
@Schema(description = "业务号")
|
||||
private String businessNo;
|
||||
|
||||
}
|
@@ -0,0 +1,23 @@
|
||||
package cn.bootx.platform.daxpay.param.pay;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 查询退款订单参数
|
||||
* @author xxm
|
||||
* @since 2024/1/15
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
@Schema(title = "查询退款订单参数")
|
||||
public class QueryRefundOrderParam extends PayCommonParam {
|
||||
|
||||
@Schema(description = "退款订单ID")
|
||||
private Long refundId;
|
||||
|
||||
@Schema(description = "退款订单号")
|
||||
private String refundNo;
|
||||
|
||||
}
|
@@ -30,7 +30,7 @@ public class SimpleRefundParam extends PayCommonParam {
|
||||
private String businessNo;
|
||||
|
||||
/**
|
||||
* 部分退款时此项必填
|
||||
* 部分退款时此项必填, 不传输系统会自动生成
|
||||
*/
|
||||
@Schema(description = "退款订单号")
|
||||
private String refundNo;
|
||||
|
Reference in New Issue
Block a user