All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.wboost.common.annotation.Explain Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package top.wboost.common.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import top.wboost.common.system.code.SystemCode;

/**
 * 方法说明注解
 * @className Explain
 * @author jwSun
 * @date 2017年6月26日 下午6:51:16
 * @version 1.0.0
 */
@Target({ ElementType.METHOD, ElementType.FIELD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Explain {

    String value();

    int exceptionCode() default 0;

    SystemCode systemCode() default SystemCode.NOTHING;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy