All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.luues.swagger.annotation.EnableSwagger Maven / Gradle / Ivy

package com.luues.swagger.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * @author wg
 * @date 2021/9/23 19:57
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface EnableSwagger {

    ProfilesType[] profiles() default ProfilesType.DLT;

    String host() default "";

    String name() default "接口api";

    String title() default "接口api";

    String contact() default "Mr-Wu";

    String version() default "2.9.2";

    String scanPackage() default "";

    String description() default "以下包含所有接口及参数和返回值";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy