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 ""; }