You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.nmgs.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
|
|
/**
|
|
* <h2>操作日志注解</h2>
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*/
|
|
@Target({ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface OperationLogDesc {
|
|
/**
|
|
* 操作模块
|
|
*/
|
|
String module();
|
|
|
|
/**
|
|
* 操作事件
|
|
*/
|
|
String events();
|
|
}
|