All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fun.fengwk.convention4j.springboot.starter.mybatis.BaseMapperScan Maven / Gradle / Ivy

package fun.fengwk.convention4j.springboot.starter.mybatis;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.core.annotation.AliasFor;

import java.lang.annotation.*;

/**
 * @author fengwk
 */
@MapperScan(markerInterface = BaseMapper.class)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
public @interface BaseMapperScan {

    @AliasFor(annotation = MapperScan.class, value = "value")
    String[] value() default {};

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy