123456789101112131415161718192021222324 |
- package com.lc.jdbc3;
- import org.junit.Test;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * ClassName: Table
- *
- * @Author 爱扣钉-陈晨
- * @Create 2024/1/28 11:23
- * @Version 1.0
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target({ElementType.TYPE})
- public @interface Table {
- //抽象方法
- String value() default "";
- }
|