1
zj
2026-03-23 efb07bcec37c49228d9760794f215c8549243ad2
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
30
31
package com.nq.utils;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
@Data
public class PaymentApiResponse {
    private Integer code;
    private String message;
    private PaymentData data;
 
    @Data
    public static class PaymentData {
        @JsonProperty("merchant_id")
        private String merchantId;
 
        @JsonProperty("app_id")
        private String appId;
 
        @JsonProperty("system_order_id")
        private String systemOrderId;
 
        @JsonProperty("merchant_order_id")
        private String merchantOrderId;
 
        @JsonProperty("pay_url")
        private String payUrl;
 
        private String sign;
    }
}