package com.gaowj.business.procdefinitionmodels;

import java.util.List;
import java.util.Map;

import org.apache.ibatis.session.RowBounds;

import com.gaowj.business.exception.BusinessException;

public interface procdefinitionmodelsDAO {
	void insert_procde_finition_models(Map<String, Object> entity) throws BusinessException;

	void update_procde_finition_models(Map<String, Object> entity) throws BusinessException;

	void delete_procde_finition_models(List<String> list) throws BusinessException;

	List<Map<String, Object>> list_procde_finition_models(RowBounds rowbounds, Map<String, Object> query) throws BusinessException;

	List<Map<String, Object>> list_procde_finition_models(Map<String, Object> query) throws BusinessException;

	int listCount_procde_finition_models(Map<String, Object> query) throws BusinessException;
}