top.lingkang.finalsql.annotation.Column Maven / Gradle / Ivy
package top.lingkang.finalsql.annotation;
import java.lang.annotation.*;
/**
* @author lingkang
* Created by 2022/4/11
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Column {
String value() default "";
}