package com.gaowj.business.formmodels; import java.util.List; import java.util.Map; import org.apache.ibatis.session.RowBounds; import com.gaowj.business.exception.BusinessException; public interface formmodelsDAO { void insert_form_models(Map<String, Object> entity) throws BusinessException; void update_form_models(Map<String, Object> entity) throws BusinessException; void delete_form_models(List<String> list) throws BusinessException; List<Map<String, Object>> list_form_models(RowBounds rowbounds, Map<String, Object> query) throws BusinessException; List<Map<String, Object>> list_form_models(Map<String, Object> query) throws BusinessException; int listCount_form_models(Map<String, Object> query) throws BusinessException; }