11 lines
260 B
Java
11 lines
260 B
Java
package com.mikufufu.common.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
// 注解位置设置为类成员变量或方法参数上
|
|
@Target({ElementType.FIELD,ElementType.PARAMETER})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface Account {
|
|
}
|