chenjiahe
2021-10-14 496b6cdc07dd9d5a78084597510efe9faa781aa7
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.hx.medical.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(ElementType.METHOD)//
public @interface WithoutUser {
 
}