地质所 沉降监测网建设项目
chenhuan
2024-06-05 0c396729840c8f1c9cfbdc1128822fd7d7ef7b4a
1
2
3
4
5
6
7
8
9
10
11
12
package com.javaweb.app.common.annotation;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface PassToken {
    boolean required() default true;
}