后台服务
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

15 satır
249 B

  1. package com.iformall.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * @author gongbiao
  5. */
  6. @Target({ElementType.METHOD})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Documented
  9. public @interface UserDataRuleAnnotation {
  10. String value() default "";
  11. }