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
| package org.yeshi.utils.generater.vo.xmlconfig.base;
|
| import java.util.Map;
|
| /**
| * @author hxh
| * @title: ApiConfig
| * @description: 接口数据
| * @date 2022/3/28 12:08
| */
| public class ApiData {
| private String path;
| private Map<String, Object> params;
|
| public String getPath() {
| return path;
| }
|
| public void setPath(String path) {
| this.path = path;
| }
|
| public Map<String, Object> getParams() {
| return params;
| }
|
| public void setParams(Map<String, Object> params) {
| this.params = params;
| }
| }
|
|