NoDataSourceBind.java 437 B

1234567891011121314151617181920
  1. package jnpf.util;
  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. *
  8. * @author JNPF开发平台组
  9. * @version V3.1.0
  10. * @copyright 引迈信息技术有限公司
  11. * @date 2021/3/16 10:51
  12. */
  13. @Target({ElementType.TYPE,ElementType.METHOD})
  14. @Retention(RetentionPolicy.RUNTIME)
  15. public @interface NoDataSourceBind {
  16. }