top.lingkang.finalsql.annotation.Table Maven / Gradle / Ivy
package top.lingkang.finalsql.annotation;
import java.lang.annotation.*;
/**
* @author lingkang
* Created by 2022/4/11
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface Table {
String value() default "";
}