All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dream.system.annotation.Table Maven / Gradle / Ivy

The newest version!
package com.dream.system.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 映射接口类与数据库表名称
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Table {
    /**
     * 数据库表名称
     *
     * @return
     */
    String value() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy