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
| package com.nq.pojo;
|
| import lombok.Data;
|
| /**
| * @program: dabaogp
| * @description: 支付2返回
| * @create: 2025-04-02 17:29
| **/
| @Data
| public class ApiResponse {
|
| private int code;
| private String message;
| private ApiResponseData data;
| private int errno;
|
| @Data
| public static class ApiResponseData {
|
| private String url;
| private String real_fee;// 实际支付金额
| private String order_number; // 平台订单号
| }
|
| }
|
|