如果我定义如下的架构对象:
UpdateDto:
allOf:
- $ref: '#/Update'
- $ref: '#/Base'
Update
和Base
均作为类生成。
生成的UpdateDto
仅扩展了Update。
是否可以通过某种方式将Update和Base生成为接口,以便UpdateDto
可以同时实现它们。
我正在使用以下插件:
<plugins>
<plugin>
<groupId>io.swagger.codegen.v3</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
</plugin>
</plugins>