com.litongjava.tio.boot.swagger.TioSwaggerV2Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
package com.litongjava.tio.boot.swagger;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import springfox.documentation.service.ApiInfo;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class TioSwaggerV2Config {
private boolean isEnable;
private ApiInfo apiInfo;
// 预生成的 Swagger JSON
private String swaggerJson;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy