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