1 package com.wing.my.cloud.system.modular.system.util.annotation;
 2 
 3 import java.lang.annotation.*;
 4 
 5 @Target({ElementType.PARAMETER, ElementType.METHOD})
 6 @Retention(RetentionPolicy.RUNTIME)
 7 @Documented
 8 public @interface CheckNullParams {
 9     String[] params();
10 }
View Code

相关文章:

  • 2021-10-20
  • 2022-12-23
  • 2022-12-23
  • 2021-04-10
  • 2022-02-04
  • 2022-12-23
  • 2022-12-23
  • 2021-05-08
猜你喜欢
  • 2021-09-20
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-03
相关资源
相似解决方案