cn.tenfell.plugins.dbgenerate.annotation.Table Maven / Gradle / Ivy
package cn.tenfell.plugins.dbgenerate.annotation;
import java.lang.annotation.*;
/**
* 表注解
* @author fs
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Documented
public @interface Table {
/**
* 为空则取类名转下划线作为表名
* @return 为空则取类名转下划线作为表名
*/
String tableName() default "";
/**
* 表注释
* @return 表注释
*/
String comment() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy