27 lines
1019 B
SQL
27 lines
1019 B
SQL
-- ----------------------------
|
|
-- Table structure for sys_post
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS "sys_post";
|
|
CREATE TABLE "sys_post" (
|
|
"post_id" integer NOT NULL,
|
|
"post_code" text(64) NOT NULL,
|
|
"post_name" text(64) NOT NULL,
|
|
"post_sort" integer(11),
|
|
"status_flag" text(1),
|
|
"del_flag" text(1),
|
|
"create_by" text(64),
|
|
"create_time" integer(20),
|
|
"update_by" text(64),
|
|
"update_time" integer(20),
|
|
"remark" text(500),
|
|
PRIMARY KEY ("post_id")
|
|
);
|
|
|
|
-- ----------------------------
|
|
-- Records of sys_post
|
|
-- ----------------------------
|
|
INSERT INTO "sys_post" VALUES (1, 'administator', 'post.admin', 1, '1', '0', 'system', 1697110106499, '', 0, '');
|
|
INSERT INTO "sys_post" VALUES (2, 'operator', 'post.operator', 2, '1', '0', 'system', 1697110106499, '', 0, '');
|
|
INSERT INTO "sys_post" VALUES (3, 'monitor', 'post.monitor', 3, '1', '0', 'system', 1697110106499, '', 0, '');
|
|
INSERT INTO "sys_post" VALUES (4, 'visitor', 'post.visitor', 4, '1', '0', 'system', 1697110106499, '', 0, '');
|