18 lines
398 B
Java
18 lines
398 B
Java
package io.github.yezhihao.protostar.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* @author yezhihao
|
|
* home https://gitee.com/yezhihao/jt808-server
|
|
*/
|
|
@Target(ElementType.FIELD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface Fs {
|
|
|
|
Field[] value();
|
|
|
|
} |