11 lines
307 B
Java
11 lines
307 B
Java
package com.ycwl.basic.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(value = {ElementType.METHOD})
|
|
public @interface RequestToFile {
|
|
} |