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

com.haoxuer.discover.data.core.CriteriaDao Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.data.core;

import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Pageable;

import java.io.Serializable;
import java.util.List;

public interface CriteriaDao extends BaseDao {
  Page findPage(Pageable pageable);
  
  long count(Filter... filters);
  
  List findList(Integer first, Integer count, List filters, List orders);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy