package cn.autocode;

import java.sql.SQLException;
import java.util.List;
import java.util.Map;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;
import org.springframework.stereotype.Repository;
import com.ibatis.sqlmap.client.SqlMapClient;

@Repository("smallDEMODao")
public class DemoDao  extends BaseSqlMapDAO{

	/**
	 * Ӽ¼
	 */
	/*
	public void insert_Demo(Map map) throws SQLException{
		this.insert("insert_Demo",map);
	}
	*/
	
	/**
	 * Ӽ¼
	 */
	/*
	public void batch_insert_Demo(List batch) throws SQLException{
		this.insert("batch_insert_Demo",batch);
	}
	*/
	 
	/**
	 * ޸ļ¼
	 */
	/*
	public Integer update_Demo(Map map) throws SQLException{
		return this.update("update_Demo",map);
	}
	*/
	
	/**
	 * ɾ¼
	 */
	/*
	public Integer delete_Demo(Map map) throws SQLException{
		return this.delete("delete_Demo",map);
	}
	*/
	
	/**
	 * ɾ¼
	 */
	
	/*
	public Integer batch_delete_Demo(Map map) throws SQLException{
		return this.delete("batch_delete_Demo",map);
	}
	*/
	
	/**
	 * ѯ
	 */
	/*
	public Integer count_Demo(Map map) throws SQLException{
		return (Integer)this.queryForObject("count_Demo",map);
	}
	*/
	
	/**
	 * ѯб¼
	 */
	
	/*
	public List<Map> query_Demo(Map map) throws SQLException{
		return this.queryForPage("query_Demo",map);
	}
	*/
	
	/**
	 * ѯб¼
	 */
	/*
	public Map get_Demo(Map map) throws SQLException{
		return (Map) this.queryForObject("query_Demo",map);
	}
	*/
}