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

site.sorghum.anno.db.DbOrderBy Maven / Gradle / Ivy

The newest version!
package site.sorghum.anno.db;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.ArrayList;
import java.util.List;

/**
 * 排序参数
 *
 * @author Sorghum
 * @since 2023/07/10
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class DbOrderBy {
    /**
     * 排序项
     */
    List orderByItems;


    /**
     * 升序
     *
     * @param column 列名
     */
    public void asc(String column) {
        orderBy("ASC", column);
    }

    /**
     * 降序
     *
     * @param column 列名
     */
    public void desc(String column) {
        orderBy("DESC", column);
    }

    public void orderBy(String orderType, String column) {
        if (this.orderByItems == null) {
            this.orderByItems = new ArrayList<>();
        }
        this.orderByItems.add(new OrderByItem(orderType, column));
    }

    /**
     * 排序项
     *
     * @author Sorghum
     * @since 2023/07/10
     */
    @Data
    @NoArgsConstructor
    public static class OrderByItem {

        public OrderByItem(String orderType, String column) {
            this.orderType = orderType;
            this.column = column;
        }

        /**
         * 排序类型 asc, desc
         */
        public String orderType;
        /**
         * 列名
         */
        public String column;

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy