package com.iailab.framework.common.annotation;
|
|
import java.lang.annotation.*;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2023年06月07日 11:35:00
|
*/
|
@Target(ElementType.METHOD)
|
@Retention(RetentionPolicy.RUNTIME)
|
@Documented
|
public @interface AutoUser {
|
|
/**
|
* 暂时无用
|
* @return
|
*/
|
String value() default "";
|
}
|