许鹏程
2024-05-28 d6f4e1c1c8de8a370c224ea4857aef5f35f4b98a
1
2
3
4
5
6
7
8
9
10
package com.product.datasource.dao;
 
import java.sql.Connection;
import java.sql.SQLException;
 
public interface ConnectionInterface {
 
    Connection getConnection() throws SQLException;
 
}