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

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 ""; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy