Files
kelfy-datamanager/src/main/java/com/joju/datamanager/common/annotation/ResultAnnotation.java
2024-04-07 11:28:44 +08:00

23 lines
493 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}