package com.gaowj.business; import java.util.List; import java.util.Map; import org.springframework.stereotype.Service; import com.gaowj.business.exception.BusinessException; import com.gaowj.business.util.Page; @Service public interface ProcdefiChooseDeptBusiness { void insert_procdefi_chooseDept(Map<String, Object> entity) throws BusinessException; Page<Map<String, Object>> list_procdefi_chooseDept(int pageNo, int pageSize, Map<String, Object> query) throws BusinessException; List<Map<String, Object>> list_procdefi_chooseDept(Map<String, Object> entity) throws BusinessException; void delete_procdefi_chooseDept_byKeyId(String key_id) throws BusinessException; }