formmodelsDAO.java 750 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.gaowj.business.formmodels;

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

import org.apache.ibatis.session.RowBounds;

import com.gaowj.business.exception.BusinessException;

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

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

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

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

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

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