You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
671 B
29 lines
671 B
package com.cyjd.rights.vo;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @author :WXC
|
|
* @Date :2023/05/17
|
|
* @description :支付宝收单交易撤销入参
|
|
*/
|
|
@Data
|
|
public class AliPayTradeQueryReq implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 原支付请求的商户订单号,和支付宝交易号不能同时为空
|
|
*/
|
|
@SerializedName(value = "out_trade_no")
|
|
private String outTradeNo;
|
|
|
|
/**
|
|
* 支付宝交易号,和商户订单号不能同时为空
|
|
*/
|
|
@SerializedName(value = "trade_no")
|
|
private String tradeNo;
|
|
|
|
}
|
|
|