com.haoxuer.discover.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-common-hibernate Show documentation
Show all versions of discover-common-hibernate Show documentation
discover-hibernate_common is a lib for hibernate
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