1234567891011121314151617181920212223 |
- package com.lc.jdbc4;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * ClassName: Column
- *
- * @Author 爱扣钉-陈晨
- * @Create 2024/1/28 11:27
- * @Version 1.0
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target(ElementType.FIELD)
- public @interface Column {
- String property() default "";
- String filed();
- }
|