SendChannel.java 264 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 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(); }