【新增】ureport2 集成

This commit is contained in:
liuhongfeng
2023-11-20 23:07:12 +08:00
committed by YunaiV
parent 5bf7cd396f
commit 8507fa9172
23 changed files with 982 additions and 4 deletions

View File

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

View File

@@ -12,3 +12,16 @@ 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 "ureport_file" (
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
"file_name" varchar NOT NULL,
"status" int NOT NULL,
"file_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报表';