wuxw
2022-09-17 639d00a9f86d83f39301db818c9a86e43045b4b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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();
}