com.hecloud.runtime.database.annotation.Table Maven / Gradle / Ivy
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