程序员蜗牛
1 year ago
1 changed files with 17 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||||
|
package com.woniu.demo.annotation; |
||||
|
|
||||
|
import java.lang.annotation.*; |
||||
|
|
||||
|
/** |
||||
|
* @className: RequestKeyParam |
||||
|
* @author: woniu |
||||
|
* @date: 2024/1/3 |
||||
|
**/ |
||||
|
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD}) |
||||
|
@Retention(RetentionPolicy.RUNTIME) |
||||
|
@Documented |
||||
|
@Inherited |
||||
|
public @interface RequestKeyParam { |
||||
|
|
||||
|
} |
||||
|
|
Loading…
Reference in new issue