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

com.hecloud.runtime.database.annotation.Table Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
package com.hecloud.runtime.database.annotation;

import java.lang.annotation.*;

/**
 * 自定义数据库表注解
 *
 * @author LoveinBJ
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface Table {
    /**
     * 表名
     *
     * @return 表名
     */
    String value();

    /**
     * 默认编码
     *
     * @return 编码
     */
    String charset() default "UTF-8";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy