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

com.nyvi.support.annotation.Table Maven / Gradle / Ivy

The newest version!
package com.nyvi.support.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 czk */ @Target(TYPE) @Retention(RUNTIME) public @interface Table { /** *

* 字段值(驼峰命名方式,该值可无) *

* @return 表名称 */ String value() default ""; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy