ProcdefiChooseDeptBusiness.java 686 Bytes
Newer Older
陈玉兰 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
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;
}