package com.java110.doc.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* request param
|
*/
|
@Target(ElementType.TYPE)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface Java110ResponseDoc {
|
|
|
/**
|
* request param
|
*
|
* parent|name|type|length|detail|example
|
* @return
|
*/
|
String[] params();
|
}
|