Files
demo/src/main/java/com/mikufufu/common/annotation/Account.java
蔡浩珊_信息数字化部 f053037227 first commit
2026-05-23 17:20:26 +08:00

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 {
}