package com.gaowj.business.formfield; import java.util.List; import java.util.Map; import com.gaowj.business.exception.BusinessException; public interface formfieldDAO { void insert_form_field(Map<String, Object> entity) throws BusinessException; void update_form_field(Map<String, Object> entity) throws BusinessException; void delete_form_field(List<String> list) throws BusinessException; void delete_form_field_byTableid(List<String> list) throws BusinessException; List<Map<String, Object>> list_form_field(Map<String, Object> query) throws BusinessException; List<Map<String, Object>> list_form_field_byTableid(String tableid) throws BusinessException; }