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
32
33
34
35
36
37
38
39
40
| package com.fzzy.gateway.data;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
|
| @Data
| public class GatewayResponse implements Serializable {
| /**
| *
| */
| private static final long serialVersionUID = -6714158228489303453L;
| /**
| * 200 表示成
| */
| public int code;
| /**
| * 说明
| */
| public String message;
|
| /**
| * status
| */
| public int status;
|
| public int timestamp;
|
| public GatewayResult result;
|
|
| public GatewayResponse() {
| }
|
| public GatewayResponse(int code, String message) {
| this.code = code;
| this.message = message;
| }
| }
|
|