MethodLog.java 332 Bytes
package cn.wisenergy.chnmuseum.party.common.log;


import java.lang.annotation.*;

/**
 * 日志切面注解
 */

@Target({ ElementType.METHOD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MethodLog {

    OperModule operModule();
    OperType operType();
    // String desc() default "";
}