2023-09-09 11:08:25 +08:00
|
|
|
|
package xyz.zhouxy.plusone.commons.annotation;
|
|
|
|
|
|
|
|
|
|
import java.lang.annotation.ElementType;
|
|
|
|
|
import java.lang.annotation.Retention;
|
|
|
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
|
import java.lang.annotation.Target;
|
|
|
|
|
|
2023-10-30 09:18:27 +08:00
|
|
|
|
/**
|
|
|
|
|
* ReaderMethod
|
|
|
|
|
*
|
|
|
|
|
* <p>
|
|
|
|
|
* 标识方法是读方法,如 getter。
|
|
|
|
|
*
|
|
|
|
|
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
|
|
|
|
|
* @since 1.0
|
|
|
|
|
*/
|
2023-09-09 11:08:25 +08:00
|
|
|
|
@Target(ElementType.METHOD)
|
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
|
public @interface ReaderMethod {
|
|
|
|
|
}
|