TargetDataSourceCharts.java 428 B

12345678910111213141516
  1. package com.model.pojo.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /**
  7. * @Author heqinwei
  8. * @Date 2018-06-23
  9. * @Description 作用于类、接口或者方法上
  10. */
  11. @Target({ElementType.TYPE, ElementType.METHOD})
  12. @Retention(RetentionPolicy.RUNTIME)
  13. public @interface TargetDataSourceCharts {
  14. }