package com.brframework.commonmq.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 消息队列配置 * * @Author xu * @Date 2019年9月5日00:55:22 */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface MQConfig { }