BPM:【移除】Ureport 的实现,因为和 Spring Boot 兼容性较差

This commit is contained in:
YunaiV
2024-03-30 20:44:45 +08:00
parent c9b3cf9ed4
commit dcf6cc293e
26 changed files with 516 additions and 1103 deletions

View File

@@ -1,2 +1 @@
DELETE FROM "report_go_view_project";
DELETE FROM "report_ureport_data";
DELETE FROM "report_go_view_project";

View File

@@ -12,16 +12,3 @@ CREATE TABLE IF NOT EXISTS "report_go_view_project" (
"deleted" bit NOT NULL DEFAULT FALSE,
PRIMARY KEY ("id")
) COMMENT 'GoView 项目表';
CREATE TABLE IF NOT EXISTS "report_ureport_data" (
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
"name" varchar NOT NULL,
"status" int NOT NULL,
"content" varchar,
"remark" varchar,
"creator" varchar DEFAULT '',
"create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updater" varchar DEFAULT '',
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
"deleted" bit NOT NULL DEFAULT FALSE,
PRIMARY KEY ("id")
) COMMENT 'Ureport2报表';