潘志宝
4 天以前 fab7c0b0968155a0206fe282abd79b5c25ef7db9
提交 | 用户 | 时间
a6de49 1 package com.iailab.framework.common.annotation;
H 2
3 import java.lang.annotation.*;
4
5 /**
6  * @author PanZhibao
7  * @Description
8  * @createTime 2023年06月07日 11:35:00
9  */
10 @Target(ElementType.METHOD)
11 @Retention(RetentionPolicy.RUNTIME)
12 @Documented
13 public @interface AutoUser {
14
15     /**
16      * 暂时无用
17      * @return
18      */
19     String value() default "";
20 }