1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.nq.pojo;
|
| import lombok.Data;
|
| /**
| * @program: dabaogp
| * @description: 代付2回调
| * @create: 2025-04-02 18:31
| **/
| @Data
| public class PayoutResponse {
| private int code;
| private String message;
| private PayoutData data;
| private int errno;
|
| @Data
| public static class PayoutData {
| private String result;
| private String orderNumber;
| }
|
| }
|
|