com.mybaits.jpa.annotation.DaoClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-jpa Show documentation
Show all versions of mybatis-jpa Show documentation
Mybaits JPA: a convenient development tool for mybatis puls
package com.mybaits.jpa.annotation;
import java.lang.annotation.*;
/**
* Created by Administrator on 2019/11/17 0017.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value = {ElementType.TYPE})
@Documented
public @interface DaoClass {
public Class daoClass() default void.class;
}