ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package jnpf.base.model.datainterface;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
public class ApiDateModel implements Serializable {
    @Schema(description = "请求方式")
    private Integer method;
    @Schema(description = "URL")
    private String url;
    @Schema(description = "请求头")
    private List<HeadModel> header;
    private List<HeadModel> query;
    private String body;
    @Schema(description = "body类型")
    private Integer bodyType;
//    private List<ExtraModel> extraParameters;
//    private String bodyJson;
//    private String bodyXml;
}