| 1234567891011121314151617 |
- package com.steerinfo.dil.annotaion;
- import java.lang.annotation.*;
- /**
- * 日志注解,打印方法输入输出,并记录到数据库
- */
- @Documented
- @Target(ElementType.METHOD)
- @Retention(RetentionPolicy.RUNTIME)
- public @interface LogAround {
- String[] foreignKeys();//日志表外键
- String[] foreignKeyTypes();//日志表外键类型
- String description() default "无";//日志描述
- }
|