【fix sonar】IGenerate文件
This commit is contained in:
+6
-4
@@ -1,12 +1,14 @@
|
|||||||
package com.jero.codegenerate.generate;
|
package com.jero.codegenerate.generate;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.sql.SQLException;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public interface IGenerate {
|
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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user