
com.github.freegeese.easymybatis.annotation.Table Maven / Gradle / Ivy
The newest version!
package com.github.freegeese.easymybatis.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* 用于标识实体对应的表名
*
* @author zhangguangyong
* @see com.github.freegeese.easymybatis.meta.MetaEntityClass
* @since 1.0
*/
@Target(TYPE)
@Retention(RUNTIME)
public @interface Table {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy