12 lines
207 B
Java
12 lines
207 B
Java
package com.yutou.qqbot.Annotations;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
@Target(ElementType.TYPE)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface UseModel {
|
|
|
|
String value() default "";
|
|
}
|