cn.woodwhales.common.util.datasource.DataTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of woodwhales-common Show documentation
Show all versions of woodwhales-common Show documentation
https://github.com/woodwhales
package cn.woodwhales.common.util.datasource;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
/**
* 数据库表注解
* @author woodwhales on 2021-07-24 23:44
*/
@Target({METHOD, FIELD})
@Retention(RUNTIME)
public @interface DataTable {
/**
* The name of the table
* @return The name of the table
*/
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy