MethodLog.java 322 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.common.log;
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18


import java.lang.annotation.*;

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

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

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