完善 Javadoc。

feature/security
ZhouXY108 2023-10-30 09:18:27 +08:00
parent ce62bdcdc6
commit cc10f11b37
2 changed files with 18 additions and 2 deletions

View File

@ -5,7 +5,15 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
// TODO 添加 Javadoc
/**
* ReaderMethod
*
* <p>
* getter
*
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
* @since 1.0
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ReaderMethod {

View File

@ -5,7 +5,15 @@ import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
// TODO 添加 Javadoc
/**
* WriterMethod
*
* <p>
* setter
*
* @author <a href="http://zhouxy.xyz:3000/ZhouXY108">ZhouXY</a>
* @since 1.0
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface WriterMethod {