cn.mapway.document.annotation.Codes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-tools-doc Show documentation
Show all versions of api-tools-doc Show documentation
auto gen doc from api with ui
The newest version!
package cn.mapway.document.annotation;
import java.lang.annotation.*;
// TODO: Auto-generated Javadoc
/**
* 注解.
*
* @author zhangjianshe
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface Codes {
/**
* Code list.
*
* @return the code[]
*/
Code[] value();
/**
* scope.
*
* @return the string
*/
String scope() default "";
}