17 lines
435 B
Plaintext
17 lines
435 B
Plaintext
package com.surfbird.common.annotation;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.TYPE)
|
|
@Documented
|
|
@Component
|
|
public @interface MyBatis {
|
|
String value() default "";
|
|
} |