package org.jeecg.common.aspect.annotation;
|
|
import org.jeecg.common.constant.ApiLogCategoryEnum;
|
|
import java.lang.annotation.*;
|
|
@Target(ElementType.METHOD)
|
@Retention(RetentionPolicy.RUNTIME)
|
@Documented
|
public @interface ApiLog {
|
/**
|
* API名称
|
* @return
|
*/
|
String apiName() default "";
|
|
/**
|
* API分类
|
* @return
|
*/
|
ApiLogCategoryEnum apiCategory() default ApiLogCategoryEnum.SAP;
|
}
|