23 lines
493 B
Java
23 lines
493 B
Java
|
|
package com.joju.datamanager.common.annotation;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* Created with IntelliJ IDEA.
|
|||
|
|
*
|
|||
|
|
* @author: Mr.zs
|
|||
|
|
* @date: 2023/12/25
|
|||
|
|
* @description:
|
|||
|
|
* @modifiedBy:
|
|||
|
|
* @version: 1.0
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
import java.lang.annotation.ElementType;
|
|||
|
|
import java.lang.annotation.Retention;
|
|||
|
|
import java.lang.annotation.RetentionPolicy;
|
|||
|
|
import java.lang.annotation.Target;
|
|||
|
|
|
|||
|
|
|
|||
|
|
@Target({ElementType.METHOD})
|
|||
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|||
|
|
public @interface ResultAnnotation {
|
|||
|
|
boolean required() default true;
|
|||
|
|
}
|