grgw_wdcj_java/wsdjc/.svn/pristine/3e/3edd1272669ab20ff086cb17a3c...

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 "";
}