Interface IOpenapiService4Subscription
- All Known Implementing Classes:
OpenapiService
public interface IOpenapiService4Subscription
对外接口订阅服务接口
为订阅服务提供查询对外接口的能力,包括根据编码查询接口和分页查询已发布接口列表。 该接口仅对外暴露查询相关的方法,不包含修改操作, 确保订阅服务的接口只读特性。
- Author:
- xezzon
-
Method Summary
Modifier and TypeMethodDescription@Nullable Openapi根据编码查询对外接口org.springframework.data.domain.Page<@NonNull Openapi> listPublishedOpenapi(io.github.xezzon.zeroweb.core.odata.ODataQueryOption odata) 查询符合条件的OpenAPI列表
-
Method Details
-
getByCode
-
listPublishedOpenapi
org.springframework.data.domain.Page<@NonNull Openapi> listPublishedOpenapi(io.github.xezzon.zeroweb.core.odata.ODataQueryOption odata) 查询符合条件的OpenAPI列表- Parameters:
odata- OData查询参数,用于指定查询条件、排序方式、分页信息等- Returns:
- 符合查询条件的OpenAPI分页结果
-