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

com.soento.core.lang.BaseQuery Maven / Gradle / Ivy

package com.soento.core.lang;

import lombok.Getter;
import lombok.Setter;

import java.util.List;

/**
 * @author yantao.zeng
 */
@Getter
@Setter
public abstract class BaseQuery extends BaseObject {
    /**
     * 分页
     */
    private Pagination pagination;
    /**
     * 排序
     */
    private List sorters;
    /**
     * 条件过滤
     */
    private List filters;

    public BaseQuery() {
        this.pagination = new Pagination();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy