com.alibaba.dingtalk.extension.annotation.Export Maven / Gradle / Ivy
package com.alibaba.dingtalk.extension.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 使用场景:
* 1. 开放的Service接口:代表开放的服务接口
* 2. 开放的扩展点基类:代表开放的扩展点
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface Export {
}