refactor: 重命名 backend-single 目录为 server
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user