创建会议室管理
This commit is contained in:
parent
17c55aaac4
commit
ea37444cb1
@ -5,3 +5,4 @@ DELETE FROM "oa_clgl";
|
||||
DELETE FROM "oa-bgyp";
|
||||
DELETE FROM "oa_jbgl";
|
||||
DELETE FROM "oa_hygl";
|
||||
DELETE FROM "oa_hysgl";
|
||||
|
@ -165,3 +165,24 @@ CREATE TABLE IF NOT EXISTS "oa_hygl" (
|
||||
"tenant_id" bigint NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT '会议管理表';
|
||||
CREATE TABLE IF NOT EXISTS "oa_hysgl" (
|
||||
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
||||
"title" varchar NOT NULL,
|
||||
"name" varchar NOT NULL,
|
||||
"location" varchar NOT NULL,
|
||||
"room_type" int NOT NULL,
|
||||
"manager" varchar NOT NULL,
|
||||
"room_max" varchar,
|
||||
"capacity" int,
|
||||
"facilities" varchar,
|
||||
"room_status" int NOT NULL,
|
||||
"photo" 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,
|
||||
"tenant_id" bigint NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT '会议室管理表';
|
||||
|
Loading…
Reference in New Issue
Block a user