riku
2022-06-09 9867f6d5c5bccfe52b878c344c536905dd6b309e
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
package cn.flightfeather.supervision.common.api2word.model;
 
 
import cn.flightfeather.supervision.common.api2word.model.ModelAttr;
import cn.flightfeather.supervision.common.api2word.model.Request;
import cn.flightfeather.supervision.common.api2word.model.Response;
 
import java.util.List;
 
/**
 * Created by XiuYin.Cui on 2018/1/11.
 */
public class Table {
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getRequestForm() {
        return requestForm;
    }
 
    public void setRequestForm(String requestForm) {
        this.requestForm = requestForm;
    }
 
    public String getResponseForm() {
        return responseForm;
    }
 
    public void setResponseForm(String responseForm) {
        this.responseForm = responseForm;
    }
 
    public String getRequestType() {
        return requestType;
    }
 
    public void setRequestType(String requestType) {
        this.requestType = requestType;
    }
 
    public List<Request> getRequestList() {
        return requestList;
    }
 
    public void setRequestList(List<Request> requestList) {
        this.requestList = requestList;
    }
 
    public List<Response> getResponseList() {
        return responseList;
    }
 
    public void setResponseList(List<Response> responseList) {
        this.responseList = responseList;
    }
 
    public String getRequestParam() {
        return requestParam;
    }
 
    public void setRequestParam(String requestParam) {
        this.requestParam = requestParam;
    }
 
    public String getResponseParam() {
        return responseParam;
    }
 
    public void setResponseParam(String responseParam) {
        this.responseParam = responseParam;
    }
 
    public ModelAttr getModelAttr() {
        return modelAttr;
    }
 
    public void setModelAttr(ModelAttr modelAttr) {
        this.modelAttr = modelAttr;
    }
 
    /**
     * 大标题
     */
    private String title;
    /**
     * 小标题
     */
    private String tag;
    /**
     * url
     */
    private String url;
 
    /**
     * 描述
     */
    private String description;
 
    /**
     * 请求参数格式
     */
    private String requestForm;
 
    /**
     * 响应参数格式
     */
    private String responseForm;
 
    /**
     * 请求方式
     */
    private String requestType;
 
    /**
     * 请求体
     */
    private List<Request> requestList;
 
    /**
     * 返回体
     */
    private List<Response> responseList;
 
    /**
     * 请求参数
     */
    private String requestParam;
 
    /**
     * 返回参数
     */
    private String responseParam;
 
    /**
     * 返回属性列表
     */
    private ModelAttr modelAttr = new ModelAttr();
}