OmgNotifyForm.java 377 B

123456789101112
  1. package com.ruoyi.app.omgpay;
  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. /** Marks a DTO populated from a complete raw OMG server or client POST form. */
  7. @Target(ElementType.PARAMETER)
  8. @Retention(RetentionPolicy.RUNTIME)
  9. public @interface OmgNotifyForm {
  10. }