admin
2021-01-23 c3e8c86d062fbac17758274156a4f18655bdd3a2
1
2
3
4
5
6
7
8
9
10
11
package com.ks.daylucky.util.annotation;
 
import java.lang.annotation.*;
 
@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface RequestSerializable {
    String key();
}