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

io.github.xuyao5.dkl.eskits.context.annotation.TableField Maven / Gradle / Ivy

package io.github.xuyao5.dkl.eskits.context.annotation;

import io.github.xuyao5.dkl.eskits.consts.SortTypeConst;

import java.lang.annotation.*;

import static io.github.xuyao5.dkl.eskits.consts.SortTypeConst.ASC;

/**
 * @author Thomas.XU(xuyao)
 * @version 14/05/21 19:51
 */
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface TableField {

    String column() default "";

    int priority() default 0;//优先级,0代表不参加排序

    SortTypeConst order() default ASC;//排序顺序,默认为asc,可设置desc
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy