【fix sonar】IGenerate文件

This commit is contained in:
梁琦涛
2023-04-03 11:04:25 +08:00
parent 5e1cd4108e
commit f750075a5f
@@ -1,12 +1,14 @@
package com.jero.codegenerate.generate;
import java.io.IOException;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
public interface IGenerate {
Map<String, Object> getCodeGenerateConfig() throws Exception;
Map<String, Object> getCodeGenerateConfig() throws SQLException, ClassNotFoundException;
List<String> generateCodeFile(String var1) throws Exception;
List<String> generateCodeFile(String var1) throws SQLException, ClassNotFoundException, IOException;
List<String> generateCodeFile(String var1, String var2, String var3) throws Exception;
}
List<String> generateCodeFile(String var1, String var2, String var3) throws SQLException, IOException, ClassNotFoundException;
}