20 lines
466 B
Java
20 lines
466 B
Java
package ink.wgink.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* When you feel like quitting. Think about why you started
|
|
* 当你想要放弃的时候,想想当初你为何开始
|
|
*
|
|
* @ClassName: CheckRequestBodyAnnotation
|
|
* @Description: 校验请求主体
|
|
* @Author: WangGeng
|
|
* @Date: 2019/11/14 16:02
|
|
* @Version: 1.0
|
|
**/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.METHOD})
|
|
public @interface CheckRequestBodyAnnotation {
|
|
}
|