派生自 projectDept/qhighschool

Administrator
2022-11-29 8c99e2d8b6c1e0d9cde6abbe80b4df75be19f6d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.qxueyou.scc.base.handler;
 
import java.lang.annotation.Retention;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface QLog {
    //ÈÕÖ¾ÀàÐÍö¾Ù SYS£ºÏµÍ³£¬BUSINESS£ºÒµÎñ
    public enum LogType{SYS,BUSINESS};
    
     //ÈÕÖ¾ÀàÐÍ
    public LogType type() default LogType.BUSINESS;
    
    //ÈÕÖ¾ÄÚÈÝ
    public String content() default "";
    
    //ÃèÊöÐÅÏ¢
    public String desp() default "";
    
    //Ä£¿é
    public String module() default "";
    
     
}