ffc3629a4dce6ffa9e83ce9544f0cd1c6721f4b1.svn-base 507 B

12345678910111213141516171819202122232425262728293031
  1. package cn.com.goldenwater.dcproj.target;
  2. import java.lang.annotation.*;
  3. /**
  4. * Created by jinshui on 2020/4/7.
  5. * 填报保存注解
  6. */
  7. @Target({ElementType.METHOD})
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Documented
  10. public @interface FillIn {
  11. /**
  12. * 表名
  13. * @return
  14. */
  15. String tableName() default "";
  16. /**
  17. * 是否移除问题列表
  18. * @return
  19. */
  20. boolean removePblm() default true;
  21. /**
  22. * 类型
  23. * @return
  24. */
  25. String type() default "";
  26. }