20 lines
309 B
Java
20 lines
309 B
Java
package com.ruoyi.common.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* 获取参数名称字段
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
@Target(ElementType.FIELD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface FieldNameApi {
|
|
/**
|
|
* 参数名称
|
|
*
|
|
*/
|
|
String name() default "";
|
|
}
|