| 12345678910111213141516 |
- package com.model.pojo.annotation;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * @Author heqinwei
- * @Date 2018-06-23
- * @Description 作用于类、接口或者方法上
- */
- @Target({ElementType.TYPE, ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- public @interface TargetDataSourceCharts {
- }
|