
cn.featherfly.component.sorm.annotation.Table Maven / Gradle / Ivy
The newest version!
package cn.featherfly.component.sorm.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
*
* 注释值对象与数据库的对应关系.
*
* @author zhongj
* @since 2.0
* @version 2.0
*/
@Target({java.lang.annotation.ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Table {
/**
* 表的名称
*/
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy