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

cloud.agileframework.common.annotation.Remark Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.common.annotation;

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

/**
 * @author 佟盟
 * 日期 2021-05-17 18:37
 * 描述 日志属性,用于记录操作日志组件中,获取属性的中文含义
 * @version 1.0
 * @since 1.0
 */
@Target({ElementType.FIELD, ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface Remark {
    /**
     * 属性名
     */
    String value();

    /**
     * 是否忽略
     */
    boolean ignoreCompare() default true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy