You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
334 B
17 lines
334 B
|
3 months ago
|
package com.project.operation.annotation;
|
||
|
|
|
||
|
|
import java.lang.annotation.*;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 自定义操作日志注解
|
||
|
|
*/
|
||
|
|
@Target({ElementType.METHOD})
|
||
|
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
|
@Documented
|
||
|
|
public @interface OperationLog {
|
||
|
|
//操作模块
|
||
|
|
String module() default "";
|
||
|
|
//操作描述
|
||
|
|
String description() default "";
|
||
|
|
}
|