first commit

This commit is contained in:
蔡浩珊_信息数字化部
2026-05-23 17:20:26 +08:00
commit f053037227
152 changed files with 10574 additions and 0 deletions

View File

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