办公用品

This commit is contained in:
XaoLi717 2024-11-06 10:50:13 +08:00
parent 1907c10686
commit e4b25d7a1a
2 changed files with 24 additions and 0 deletions

View File

@ -2,3 +2,4 @@ DELETE FROM "des_datainfo";
DELETE FROM "des_homePJ";
DELETE FROM "des_homeimg";
DELETE FROM "oa_clgl";
DELETE FROM "oa-bgyp";

View File

@ -85,3 +85,26 @@ CREATE TABLE IF NOT EXISTS "oa_clgl" (
"tenant_id" bigint NOT NULL,
PRIMARY KEY ("id")
) COMMENT '车辆管理表';
CREATE TABLE IF NOT EXISTS "oa-bgyp" (
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
"title" varchar NOT NULL,
"user_name" varchar NOT NULL,
"dept_name" varchar NOT NULL,
"dept_id" bigint NOT NULL,
"usage_name" varchar,
"usage_id" int NOT NULL,
"usage_quantity" int NOT NULL,
"unit" int,
"usage_purpose" varchar,
"usage_date" varchar NOT NULL,
"status" int,
"user_id" bigint,
"process_instance_id" 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,
"tenant_id" bigint NOT NULL,
PRIMARY KEY ("id")
) COMMENT '办公用品管理表';