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();
|
|
}
|