调整Swagger配置

This commit is contained in:
TinyAnts
2023-03-15 15:29:47 +08:00
parent 58999e6fbc
commit 4bc1e28685
2 changed files with 13 additions and 2 deletions

View File

@@ -33,10 +33,15 @@ public class SwaggerConfig {
}
private ApiInfo apiInfo(){
String author = "FZR";
String url = "https://gitee.com/likeadmin/likeadmin_java";
String email = "tinyants@163.com";
return new ApiInfoBuilder()
.title("LikeAdmin【前台】接口文档")
.description("likeadmin快速开发管理后台")
.description("likeadmin是一套使用流行的技术栈的快速开发管理后台")
.version(GlobalConfig.version)
.contact(new Contact(author, url, email))
.build();
}