All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mxixm.fastboot.weixin.annotation.WxEventMapping Maven / Gradle / Ivy

The newest version!
package com.mxixm.fastboot.weixin.annotation;

import com.mxixm.fastboot.weixin.module.event.WxEvent;

import java.lang.annotation.*;

/**
 * 微信请求绑定
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@WxAsyncMessage
@WxMapping
public @interface WxEventMapping {

    /**
     * 请求事件的类型
     * @return dummy
     */
    WxEvent.Type type();

    /**
     * 名称
     * @return dummy
     */
    String name() default "";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy