com.kukababy.plus.annotation.Column Maven / Gradle / Ivy
package com.kukababy.plus.annotation;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
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:49:57
*/
@Target({ FIELD })
@Retention(RUNTIME)
public @interface Column {
String name() default "";
}