add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.dobbinsoft.fw.pay.model.request;
 
import lombok.*;
 
/**
 * <pre>
 *  关闭订单请求对象类
 * </pre>
 */
@Data
@EqualsAndHashCode(callSuper = true)
@Builder(builderMethodName = "newBuilder")
@NoArgsConstructor
@AllArgsConstructor
public class MatrixPayOrderCloseRequest extends MatrixBasePayRequest {
 
    private static final long serialVersionUID = 3972651542466483360L;
    /**
     * <pre>
     * 商户订单号
     * out_trade_no
     * 二选一
     * String(32)
     * 20150806125346
     * 商户系统内部的订单号,当没提供transaction_id时需要传这个。
     * </pre>
     */
    private String outTradeNo;
}