Column.java 297 B

12345678910111213141516
  1. package com.sf.javase.anno;
  2. import java.lang.annotation.*;
  3. /**
  4. * 字段
  5. */
  6. @Inherited
  7. @Target(ElementType.FIELD) //注解作用在属性上
  8. @Retention(RetentionPolicy.RUNTIME)
  9. public @interface Column {
  10. // 字段名
  11. String columnName();
  12. // 字段类型
  13. String columnType();
  14. }