com.quhaodian.data.core.CriteriaDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-hibernate-common Show documentation
Show all versions of discover-hibernate-common Show documentation
discover-hibernate_common is a lib for hibernate
The newest version!
package com.quhaodian.data.core;
import com.quhaodian.data.page.Filter;
import com.quhaodian.data.page.Order;
import com.quhaodian.data.page.Page;
import com.quhaodian.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);
}