All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.guerlab.spring.searchparams.OrderByIndex Maven / Gradle / Ivy

There is a newer version: 5.1.4
Show newest version
package net.guerlab.spring.searchparams;

import java.lang.annotation.*;

/**
 * Order By执行先后顺序
 * 数值越大,优先级越大
 *
 * @author guer
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface OrderByIndex {

    /**
     * 获取Order By执行先后顺序
     *
     * @return Order By执行先后顺序
     */
    int value() default 0;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy