潘志宝
2024-12-23 d6464955dc20cb527f7be02ac8631c1effb1768a
提交 | 用户 | 时间
a6de49 1 package com.iailab.framework.common.annotation;
H 2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2023年06月07日 11:37:00
12  */
13 @Target(ElementType.FIELD)
14 @Retention(RetentionPolicy.RUNTIME)
15 public @interface UserRealName {
16
17     /**
18      * 用户ID
19      *
20      * @return
21      */
22     String userid() default "";
23
24     /**
25      * 用户账号
26      *
27      * @return
28      */
29     String username() default "";
30 }