package com.supersavedriving.driver.core.common.annotion;
|
|
import com.supersavedriving.driver.modular.system.warpper.ResponseWarpper;
|
|
import java.lang.annotation.*;
|
|
/**
|
* 接口日志注解
|
*/
|
@Inherited
|
@Retention(RetentionPolicy.RUNTIME)
|
@Target({ElementType.METHOD})
|
public @interface ServiceLog {
|
/**
|
* 接口名称
|
* @return
|
*/
|
String name() default "";
|
|
/**
|
* 接口地址
|
* @return
|
*/
|
String url() default "";
|
}
|