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

com.kukababy.plus.annotation.Table Maven / Gradle / Ivy

package com.kukababy.plus.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 [email protected] * @date 2019年3月5日 下午10:50:46 */ @Target(TYPE) @Retention(RUNTIME) public @interface Table { /** * (Optional) The name of the table. *

* Defaults to the entity name. */ String name() default ""; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy