26 lines
537 B
Java
26 lines
537 B
Java
package com.emotion.dto.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 接口端点详情响应
|
|
*/
|
|
@Data
|
|
public class ApiEndpointDetailResponse {
|
|
|
|
private String id;
|
|
private String path;
|
|
private String method;
|
|
private String operationId;
|
|
private String summary;
|
|
private String description;
|
|
private String tags;
|
|
private Integer deprecated;
|
|
private String requestSchema;
|
|
private String responseSchema;
|
|
private String createTime;
|
|
private List<ApiParamItemResponse> params;
|
|
}
|