SendChannel.java 264 Bytes
package com.sl.ms.sms.annotation;

import com.sl.ms.sms.enums.SendChannelEnum;

import java.lang.annotation.*;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented //标记注解
public @interface SendChannel {

    SendChannelEnum type();

}