提交 | 用户 | 时间 | ||
58d006 | 1 | package com.mandi.springmvc.logs; |
A | 2 | |
3 | import java.lang.annotation.Documented; | |
4 | import java.lang.annotation.ElementType; | |
5 | import java.lang.annotation.Retention; | |
6 | import java.lang.annotation.RetentionPolicy; | |
7 | import java.lang.annotation.Target; | |
8 | ||
9 | import com.mandi.system.persist.ModuleEnum; | |
10 | ||
11 | @Retention(RetentionPolicy.RUNTIME) | |
12 | @Target(ElementType.METHOD) | |
13 | @Documented | |
14 | public @interface OpLogs { | |
15 | String name(); | |
16 | ModuleEnum module(); | |
17 | } |