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

com.github.liuanxin.api.annotation.ApiResponse Maven / Gradle / Ivy

The newest version!
package com.github.liuanxin.api.annotation;

import java.lang.annotation.*;

@Target({ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ApiResponse {

    int code();

    String msg();

    ApiReturnType[] type() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy