use <dependency> <groupId>org.apache.dubbo</groupId> <artifactId>dubbo-rest-openapi</artifactId> </dependency> @Operation(summary ="Obtain the list of access logs2")
ApiResponse<PageResponse<AccessLogRes>>getAccessLog(AccessLogReq req); The OpenAPI document only shows the ApiResponse structure. The PageResponse in it is related to AccessLogRes is not shown in the documentation. It is shown in both classes.Schema annotations, but I always useio.swagger.v3.oas.annotations.media.Schema, is there a problem? The version of dubbo is 3.3.5. [email protected]
