package com.vci.starter.web.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 生命周期连接线的事件 * @author weidy */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface VciLifeCycleTranEvent { /** * 类全路径 * @return 类路径名称 */ String classFullName() ; /** * 显示名称 * @return 显示名称 */ String showName(); }