| | |
| | | public Docket api() { |
| | | return new Docket(DocumentationType.SWAGGER_2) |
| | | .apiInfo(apiInfo()) |
| | | .groupName("fg蓄电池监控平台v2.0") |
| | | .groupName("乌东德平台v2.0") |
| | | .select() |
| | | .apis(RequestHandlerSelectors.any()) |
| | | .apis(RequestHandlerSelectors.basePackage("com.whyc.controller")) |
| | |
| | | |
| | | private ApiInfo apiInfo() { |
| | | return new ApiInfoBuilder() |
| | | .title("fg蓄电池监控平台v2.0") //大标题 title |
| | | .title("乌东德平台v2.0") //大标题 title |
| | | .contact(new Contact("PerryHsu","todo","todo")) |
| | | .description("fg蓄电池监控平台v2.0") //小标题 |
| | | .description("乌东德平台v2.0") //小标题 |
| | | .version("1.0") //版本 |
| | | // .termsOfServiceUrl("http://xxx.xxx.com") //终端服务程序 |
| | | // .license("LICENSE") //链接显示文字 |