package com.gaowj.business.procdefiChooseDept; import java.util.List; import java.util.Map; import org.apache.ibatis.session.RowBounds; import com.gaowj.business.exception.BusinessException; public interface procdefiChooseDeptDAO { void insert_procdefi_chooseDept(Map<String, Object> entity) throws BusinessException; void update_procdefi_chooseDept(Map<String, Object> entity) throws BusinessException; void delete_procdefi_chooseDept(List<String> list) throws BusinessException; List<Map<String, Object>> list_procdefi_chooseDept(RowBounds rowbounds, Map<String, Object> query) throws BusinessException; List<Map<String, Object>> list_procdefi_chooseDept(Map<String, Object> query) throws BusinessException; int listCount_procdefi_chooseDept(Map<String, Object> query) throws BusinessException; void delete_procdefi_chooseDept_byKeyId(String key_id) throws BusinessException; }