| | |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | import org.springframework.boot.context.properties.ConfigurationProperties; |
| | | |
| | | @ConfigurationProperties("swagger") |
| | | /* loaded from: blade-starter-swagger-9.3.0.0-SNAPSHOT.jar:org/springblade/core/swagger/SwaggerProperties.class */ |
| | | public class SwaggerProperties { |
| | | private List<String> basePackages = new ArrayList(Collections.singletonList("org.springblade")); |
| | | private List<String> basePath = new ArrayList(); |
| | | private List<String> excludePath = new ArrayList(); |
| | | private List<String> basePackages = new ArrayList<>(Collections.singletonList("com.qianwen")); |
| | | private List<String> basePath = new ArrayList<>(); |
| | | private List<String> excludePath = new ArrayList<>(); |
| | | private String title = "BladeX 接口文档系统"; |
| | | private String description = "BladeX 接口文档系统"; |
| | | private String version = "9.3.0.0-SNAPSHOT"; |
| | | private String license = "Powered By BladeX"; |
| | | private String licenseUrl = "https://bladex.vip"; |
| | | private String termsOfServiceUrl = "https://bladex.vip"; |
| | | private String description = "smart API 接口文档"; |
| | | private String version = "1.0.0"; |
| | | private String license = "Powered By Qianwen"; |
| | | private String licenseUrl = "https://no"; |
| | | private String termsOfServiceUrl = "https://no"; |
| | | private String host = ""; |
| | | private Contact contact = new Contact(); |
| | | private Authorization authorization = new Authorization(); |