AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
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
30
31
32
33
package org.jeecg.common.aspect.annotation;
 
import java.lang.annotation.*;
 
import org.jeecg.common.constant.enums.LowAppAopEnum;
 
/**
 * 自动注入low_app_id
 * 
 * @Author scott
 * @email jeecgos@163.com
 * @Date 2022年01月05日
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AutoLowApp {
 
    /**
     * 切面类型(add、delete、db_import等其他操作)
     *
     * @return
     */
    LowAppAopEnum action();
 
    /**
     * 业务类型(cgform等)
     *
     * @return
     */
    String bizType();
 
}