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.

26 lines
352 B
Java

11 months ago
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();
}