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

com.boot.auth.starter.annotation.OperLog Maven / Gradle / Ivy

package com.boot.auth.starter.annotation;

import java.lang.annotation.*;

@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OperLog {
    /**
     * 是否需要日志记录,默认开启
     * @return flag
     */
    boolean flag() default true;

    /**
     * 记录类型
     * @return operType
     */
    String operType() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy