12345678910111213141516171819202122232425 |
- package com.cockpit.dao;
- import java.lang.reflect.Method;
- import java.sql.Connection;
- import java.sql.ResultSet;
- import java.util.List;
- /**
- * 驾驶舱公共类接口
- * @author zhumingyue
- *
- */
- public interface ConnDao{
- // public String queryPsrId(String sql);//根据Sql语句查询设备编码
-
- public Connection getConn() throws Exception ;//得到Connection连接
-
- public void closeAll() ;//关闭Connection连接
-
- public ResultSet executeQuery(String sql) ;//通过sql得到结果集
-
- public String executeAddBatch(String sql, List list) ;//通过SQL和list实体类的集合批量insert
-
- public List<Method> findFild(List list) throws Exception ;//通过List集合得到Method实体类的方法
-
- }
|