package integration.anyframe.services.corebasis;
import anyframe.common.Page;
import anyframe.common.util.SearchVO;
import anyframe.core.basis.dao.GenericDao;


public interface UsersDao extends GenericDao<Users, String>{

    Page getList(SearchVO searchVO) throws Exception;
}
