lizhanwei
2020-03-21 46bf3d68645d566e726288279c026033901c67b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.safeluck.aykj.annotation;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * Created by zw on 2017/7/11.
 * 从结尾开始解析而不是从开头
 */
 
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface FromEnd {
    int value();
}