com.dream.chain.def.ChainQuery Maven / Gradle / Ivy
The newest version!
package com.dream.chain.def;
import com.dream.system.config.Page;
import com.dream.util.tree.Tree;
import java.util.List;
public interface ChainQuery {
T one(Class type);
List list(Class type);
List tree(Class type);
Page page(Class type, Page page);
boolean exists();
}