13 lines
216 B
Java
13 lines
216 B
Java
package io.dataease.traffic;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface DeTraffic {
|
|
int value() default 0;
|
|
|
|
String api();
|
|
}
|