package egovframework.com.ext.jstree.springiBatis.core.dao; import egovframework.com.ext.jstree.springiBatis.core.vo.ComprehensiveTree; public interface SupportDao { public void ddlExecute(T comprehensiveTree) throws Exception; public void ddlSequenceExecute(T comprehensiveTree) throws Exception; public void dmlExecute(T comprehensiveTree) throws Exception; public void ddlLogExecute(T comprehensiveTree) throws Exception; public void ddlLogTriggerExecute(T comprehensiveTree) throws Exception; public int isExistTable(T comprehensiveTree) throws Exception; }