com.kukababy.plus.annotation.Table Maven / Gradle / Ivy
package com.kukababy.plus.annotation;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
*
* 描述:
*
*
* @author [email protected]
* @date 2019年3月5日 下午10:50:46
*/
@Target(TYPE)
@Retention(RUNTIME)
public @interface Table {
/**
* (Optional) The name of the table.
*
* Defaults to the entity name.
*/
String name() default "";
}