流转工作流程

This commit is contained in:
2024-05-12 16:15:34 +08:00
parent 1a9beeed93
commit eb9818dd7f
71 changed files with 3810 additions and 302 deletions

View File

@@ -21,7 +21,7 @@ public class GenerateCode {
private static final String TARGET_DIR = "D://code";
private static final String DB_URL = "jdbc:mysql://192.168.1.24:13306/pqsinfo_hn_process";
private static final String DB_URL = "jdbc:mysql://192.168.1.24:13306/bpm";
// private static final String DB_URL = "jdbc:oracle:thin:@192.168.1.170:1521:pqsbase";
private static final String USERNAME = "root";
@@ -30,9 +30,9 @@ public class GenerateCode {
public static void main(String[] args) {
List<Module> modules = Stream.of(
new Module("hongawen", "com.njcn.process", "workflow", Stream.of(
"wf_deploy_form"
).collect(Collectors.toList()), "wf_")
new Module("hongawen", "com.njcn.bpm", "workflow", Stream.of(
"bpm_process_instance_copy"
).collect(Collectors.toList()), "bpm_")
).collect(Collectors.toList());
generateJavaFile(modules);
}

View File

@@ -16,6 +16,7 @@ public interface ServerInfo {
String DEVICE = "device-boot";
String EVENT = "event-boot";
String SUPERVISION = "supervision-boot";
String BPM = "bpm-boot";
String HARMONIC = "harmonic-boot";
String REPORT = "report-boot";
String SYSTEM = "system-boot";