田源
2025-01-16 a13255b4129ee8a7a7b7e1ecd8e02dd2c78f7c17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.vci.starter.web.annotation;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * vci平台扫描的包,会自动扫描业务类型,链接类型,枚举,生命周期,版本规则
 * @author weidy
 */
@Target({java.lang.annotation.ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface VciPlatformScan {
 
    /**
     * 包名,到什么包开始就行,会自动找它的下级包
     * @return
     */
    String[] value();
 
}