Przeglądaj źródła

Merge remote-tracking branch 'origin/master'

zhangweixin 4 lat temu
rodzic
commit
37b466acf0

+ 4 - 4
equip-component/src/main/kotlin/com/persagy/server/Swagger3Config.kt

@@ -51,7 +51,7 @@ import org.springframework.web.method.HandlerMethod
 open class Swagger3Config {
 
     /** 标题 */
-    private val title = "数据中心 API"
+    private val title = "数据中心-定制报表接口 API"
     /** API 版本号 */
     private val version = "1.0"
 
@@ -62,7 +62,7 @@ open class Swagger3Config {
      */
     @Bean
     open fun openApi(): OpenAPI {
-        val contact = Contact().name("庞利祥").email("sybotan@126.com")
+        val contact = Contact().name("张维新").email("zhangweixin@sagacloud.sn")
         return OpenAPI()
             .components(
                 Components()
@@ -71,12 +71,12 @@ open class Swagger3Config {
                 Info()
                 .title(title)
                 .version(version)
-                .termsOfService("http://www.sybotan.com")
+                .termsOfService("http://www.persagy.com")
                 .contact(contact)
                 .license(
                     License()
                     .name("Apache 2.0")
-                    .url("http://www.sybotan.com")))
+                    .url("http://www.persagy.com")))
     }