From 815da0f1fab3ea6ef74561c6d584cb6e6fcb2554 Mon Sep 17 00:00:00 2001 From: dataprince Date: Tue, 9 Jan 2024 20:50:11 +0800 Subject: [PATCH] =?UTF-8?q?Ruoyi-FlexV5=E7=9A=84PosgtgreSQL=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E5=AE=8C=E6=95=B4=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../postgresql-ruoyiflex-V5.0.0.sql | 1555 +++++++++++++++++ 1 file changed, 1555 insertions(+) create mode 100644 script/sql/postgresql/postgresql-ruoyiflex-V5.0.0.sql diff --git a/script/sql/postgresql/postgresql-ruoyiflex-V5.0.0.sql b/script/sql/postgresql/postgresql-ruoyiflex-V5.0.0.sql new file mode 100644 index 0000000..e82cab4 --- /dev/null +++ b/script/sql/postgresql/postgresql-ruoyiflex-V5.0.0.sql @@ -0,0 +1,1555 @@ +drop table if exists demo_student; +create table if not exists demo_student ( + student_id BIGSERIAL, + student_name varchar(30) not null, + student_age integer, + student_hobby varchar(30) not null, + student_sex char not null, + student_status char default '0'::bpchar, + student_birthday timestamp, + constraint "demo_student_pk" primary key (student_id) +); +comment on table demo_student is '学生信息单表(mb)'; +comment on column demo_student.student_id is '编号'; +comment on column demo_student.student_name is '学生名称'; +comment on column demo_student.student_age is '年龄'; +comment on column demo_student.student_hobby is '爱好(0代码 1音乐 2电影)'; +comment on column demo_student.student_sex is '性别(1男 2女 3未知)'; +comment on column demo_student.student_status is '状态(0正常 1停用)'; +comment on column demo_student.student_birthday is '生日'; + +drop table if exists demo_product; +create table if not exists demo_product ( + product_id BIGSERIAL NOT NULL, + parent_id bigint NULL DEFAULT 0, + product_name varchar(30) NOT NULL, + order_num INTEGER DEFAULT 0, + status char(1) NULL DEFAULT '0', + constraint "demo_product_pk" PRIMARY KEY (product_id) +); +comment on table demo_product is '产品树表(mb)'; +comment on column demo_product.product_id is '产品id'; +comment on column demo_product.parent_id is '父产品id'; +comment on column demo_product.product_name is '产品名称'; +comment on column demo_product.order_num is '显示顺序'; +comment on column demo_product.status is '产品状态(0正常 1停用)'; + +drop table if exists demo_customer; +create table if not exists demo_customer ( + customer_id BIGSERIAL NOT NULL, + customer_name varchar(30) not null DEFAULT '', + phonenumber varchar(11) NULL DEFAULT NULL, + sex char(1) NULL DEFAULT NULL, + birthday TIMESTAMP NULL DEFAULT NULL, + remark varchar(500) NULL DEFAULT NULL, + constraint "demo_customer_pk" PRIMARY KEY (customer_id) +); +comment on table demo_customer is '客户主表(mb)'; +comment on column demo_customer.customer_id is '客户id'; +comment on column demo_customer.customer_name is '客户姓名'; +comment on column demo_customer.phonenumber is '手机号码'; +comment on column demo_customer.sex is '客户性别'; +comment on column demo_customer.birthday is '客户生日'; +comment on column demo_customer.remark is '客户描述'; + +DROP TABLE IF EXISTS demo_goods; +CREATE TABLE IF NOT EXISTS demo_goods ( + goods_id BIGSERIAL NOT NULL, + customer_id bigint NOT NULL, + name varchar(30) NULL DEFAULT NULL, + weight INTEGER NULL DEFAULT 0, + price decimal(6,2) NULL DEFAULT NULL, + "date" timestamp NULL DEFAULT NULL, + "type" char(1) NULL DEFAULT NULL, + constraint "demo_goods_pk" PRIMARY KEY (goods_id) +); +comment on table demo_goods is '商品子表(mb)'; +comment on column demo_goods.goods_id is '商品id'; +comment on column demo_goods.customer_id is '客户id'; +comment on column demo_goods.name is '商品名称'; +comment on column demo_goods.weight is '商品重量'; +comment on column demo_goods.price is '商品价格'; +comment on column demo_goods."date" is '商品时间'; +comment on column demo_goods."type" is '商品种类'; + +drop table if exists gen_table; +create table if not exists gen_table +( + table_id bigint NOT NULL, + table_name varchar(200) default ''::varchar, + table_comment varchar(500) default ''::varchar, + sub_table_name varchar(64) default ''::varchar, + sub_table_fk_name varchar(64) default ''::varchar, + class_name varchar(100) default ''::varchar, + tpl_category varchar(200) default 'crud'::varchar, + package_name varchar(100) default null::varchar, + module_name varchar(30) default null::varchar, + business_name varchar(30) default null::varchar, + function_name varchar(50) default null::varchar, + function_author varchar(50) default null::varchar, + gen_type char default '0'::bpchar not null, + gen_path varchar(200) default '/'::varchar, + options varchar(1000) default null::varchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint gen_table_pk primary key (table_id) +); + +comment on table gen_table is '代码生成业务表'; +comment on column gen_table.table_id is '编号'; +comment on column gen_table.table_name is '表名称'; +comment on column gen_table.table_comment is '表描述'; +comment on column gen_table.sub_table_name is '关联子表的表名'; +comment on column gen_table.sub_table_fk_name is '子表关联的外键名'; +comment on column gen_table.class_name is '实体类名称'; +comment on column gen_table.tpl_category is '使用的模板(CRUD单表操作 TREE树表操作)'; +comment on column gen_table.package_name is '生成包路径'; +comment on column gen_table.module_name is '生成模块名'; +comment on column gen_table.business_name is '生成业务名'; +comment on column gen_table.function_name is '生成功能名'; +comment on column gen_table.function_author is '生成功能作者'; +comment on column gen_table.gen_type is '生成代码方式(0zip压缩包 1自定义路径)'; +comment on column gen_table.gen_path is '生成路径(不填默认项目路径)'; +comment on column gen_table.options is '其它生成选项'; +COMMENT ON COLUMN "gen_table"."version" IS '乐观锁'; +comment on column gen_table.create_by is '创建者'; +comment on column gen_table.create_time is '创建时间'; +comment on column gen_table.update_by is '更新者'; +comment on column gen_table.update_time is '更新时间'; +comment on column gen_table.remark is '备注'; + +INSERT INTO gen_table VALUES + (13, 'mf_student', '学生信息单表', NULL, NULL, 'Student', 'crud', 'com.ruoyi.mf', 'mf', 'student', '学生信息表', '数据小王子', '0', '/', '{"parentMenuId":"2018"}',0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36', 'mybatis-flex版本的学生信息单表演示'), + (15, 'mf_product', '产品树表', '', '', 'MfProduct', 'tree', 'com.ruoyi.mf', 'mf', 'product', '产品树', '数据小王子', '0', '/', '{"treeCode":"product_id","treeName":"product_name","treeParentCode":"parent_id","parentMenuId":"2018"}', 0,1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43', 'mybatis-flex版本的产品树表演示'), + (16, 'mf_customer', '客户主表', 'mf_goods', 'customer_id', 'Customer', 'sub', 'com.ruoyi.mf', 'mf', 'customer', '客户主表', '数据小王子', '0', '/', '{"parentMenuId":"2018"}', 0,1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57', 'mybatis-flex格式的主子表测试'), + (17, 'mf_goods', '商品子表', NULL, NULL, 'Goods', 'crud', 'com.ruoyi.demo', 'demo', 'goods', '商品子表', '数据小王子', '0', '/', '{}', 0,1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30', NULL); + +drop table if exists gen_table_column; +create table if not exists gen_table_column +( + column_id bigint NOT NULL, + table_id bigint, + column_name varchar(200) default null::varchar, + column_comment varchar(500) default null::varchar, + column_type varchar(100) default null::varchar, + java_type varchar(500) default null::varchar, + java_field varchar(200) default null::varchar, + is_pk char default null::bpchar, + is_increment char default null::bpchar, + is_required char default null::bpchar, + is_insert char default null::bpchar, + is_edit char default null::bpchar, + is_list char default null::bpchar, + is_query char default null::bpchar, + query_type varchar(200) default 'EQ'::varchar, + html_type varchar(200) default null::varchar, + dict_type varchar(200) default ''::varchar, + sort INTEGER, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + constraint gen_table_column_pk primary key (column_id) +); + +comment on table gen_table_column is '代码生成业务表字段'; +comment on column gen_table_column.column_id is '编号'; +comment on column gen_table_column.table_id is '归属表编号'; +comment on column gen_table_column.column_name is '列名称'; +comment on column gen_table_column.column_comment is '列描述'; +comment on column gen_table_column.column_type is '列类型'; +comment on column gen_table_column.java_type is 'JAVA类型'; +comment on column gen_table_column.java_field is 'JAVA字段名'; +comment on column gen_table_column.is_pk is '是否主键(1是)'; +comment on column gen_table_column.is_increment is '是否自增(1是)'; +comment on column gen_table_column.is_required is '是否必填(1是)'; +comment on column gen_table_column.is_insert is '是否为插入字段(1是)'; +comment on column gen_table_column.is_edit is '是否编辑字段(1是)'; +comment on column gen_table_column.is_list is '是否列表字段(1是)'; +comment on column gen_table_column.is_query is '是否查询字段(1是)'; +comment on column gen_table_column.query_type is '查询方式(等于、不等于、大于、小于、范围)'; +comment on column gen_table_column.html_type is '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)'; +comment on column gen_table_column.dict_type is '字典类型'; +comment on column gen_table_column.sort is '排序'; +COMMENT ON COLUMN "gen_table_column"."version" IS '乐观锁'; +comment on column gen_table_column.create_by is '创建者'; +comment on column gen_table_column.create_time is '创建时间'; +comment on column gen_table_column.update_by is '更新者'; +comment on column gen_table_column.update_time is '更新时间'; + +INSERT INTO gen_table_column VALUES + (74, 13, 'student_id', '编号', 'bigint', 'Long', 'studentId', '1', '0', NULL, NULL, '1', NULL, NULL, 'EQ', 'input', '', 1,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (75, 13, 'student_name', '学生名称', 'varchar(30)', 'String', 'studentName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 2,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (76, 13, 'student_age', '年龄', 'int', 'Long', 'studentAge', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'input', '', 3,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (77, 13, 'student_hobby', '爱好(0代码 1音乐 2电影)', 'varchar(30)', 'String', 'studentHobby', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'select', 'sys_student_hobby', 4,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (78, 13, 'student_gender', '性别(1男 2女 3未知)', 'char(1)', 'String', 'studentGender', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'radio', 'sys_user_gender', 5,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (79, 13, 'student_status', '状态(0正常 1停用)', 'char(1)', 'String', 'studentStatus', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'select', 'sys_student_status', 6,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (80, 13, 'student_birthday', '生日', 'datetime', 'Date', 'studentBirthday', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'datetime', '', 7,0, 1, '2023-11-17 14:12:07', 0, '2023-12-04 15:59:36'), + (81, 13, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8,0, 0, '2023-11-22 21:03:59', 0, '2023-12-04 15:59:36'), + (82, 13, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 9,0, 0, '2023-11-22 21:03:59', 0, '2023-12-04 15:59:36'), + (83, 13, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '0', '0', '0', '0', NULL, NULL, 'EQ', 'input', '', 10, 0,0, '2023-11-22 21:03:59', 0, '2023-12-04 15:59:36'), + (84, 13, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '0', '0', NULL, NULL, 'EQ', 'datetime', '', 11,0, 0, '2023-11-22 21:03:59', 0, '2023-12-04 15:59:36'), + (94, 15, 'product_id', '产品id', 'bigint', 'Long', 'productId', '1', '0', NULL, NULL, '1', NULL, NULL, 'EQ', 'input', '', 1,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (95, 15, 'parent_id', '父产品id', 'bigint', 'Long', 'parentId', '0', '0', '1', '1', '1', '0', '0', 'EQ', 'input', '', 2,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (96, 15, 'product_name', '产品名称', 'varchar(30)', 'String', 'productName', '0', '0', '1', '1', '1', '1', '1', 'LIKE', 'input', '', 3, 0,1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (97, 15, 'order_num', '显示顺序', 'int', 'Long', 'orderNum', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'input', '', 4,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (98, 15, 'status', '产品状态(0正常 1停用)', 'char(1)', 'String', 'status', '0', '0', '1', '1', '1', '1', '1', 'EQ', 'radio', 'sys_student_status', 5,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (99, 15, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 6,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (100, 15, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 7,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (101, 15, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '0', '0', '0', '0', NULL, NULL, 'EQ', 'input', '', 8,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (102, 15, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, '0', '0', NULL, NULL, 'EQ', 'datetime', '', 9,0, 1, '2023-11-22 22:44:33', 0, '2023-11-23 10:57:43'), + (103, 16, 'customer_id', '客户id', 'bigint', 'Long', 'customerId', '1', '0', NULL, NULL, '1', NULL, NULL, 'EQ', 'input', '', 1, 0,1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (104, 16, 'customer_name', '客户姓名', 'varchar(30)', 'String', 'customerName', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 2,0, 1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (105, 16, 'phonenumber', '手机号码', 'varchar(11)', 'String', 'phonenumber', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 3,0, 1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (106, 16, 'gender', '客户性别', 'varchar(20)', 'String', 'gender', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', 'sys_user_gender', 4, 0,1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (107, 16, 'birthday', '客户生日', 'datetime', 'Date', 'birthday', '0', '0', NULL, '1', '1', '1', '0', 'EQ', 'datetime', '', 5,0, 1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (108, 16, 'remark', '客户描述', 'varchar(500)', 'String', 'remark', '0', '0', NULL, '1', '1', '0', NULL, 'EQ', 'textarea', '', 6,0, 1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (109, 16, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 7, 0,1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (110, 16, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 8,0, 1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (111, 16, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 9, 0,1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (112, 16, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 10, 0,1, '2023-12-04 22:19:16', 0, '2023-12-05 09:41:57'), + (113, 17, 'goods_id', '商品id', 'bigint', 'Long', 'goodsId', '1', '0', NULL, NULL, '1', NULL, NULL, 'EQ', 'input', '', 1, 0,1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (114, 17, 'customer_id', '客户id', 'bigint', 'Long', 'customerId', '0', '0', '1', '1', '1', '1', '0', 'EQ', 'input', '', 2, 0,1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (115, 17, 'name', '商品名称', 'varchar(30)', 'String', 'name', '0', '0', NULL, '1', '1', '1', '1', 'LIKE', 'input', '', 3, 0,1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (116, 17, 'weight', '商品重量', 'int', 'Long', 'weight', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 4,0, 1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (117, 17, 'price', '商品价格', 'decimal(6,2)', 'BigDecimal', 'price', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'input', '', 5,0, 1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (118, 17, 'date', '商品时间', 'datetime', 'Date', 'date', '0', '0', NULL, '1', '1', '1', '0', 'EQ', 'datetime', '', 6, 0,1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (119, 17, 'type', '商品种类', 'char(1)', 'String', 'type', '0', '0', NULL, '1', '1', '1', '1', 'EQ', 'select', 'sys_goods_type', 7,0, 1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (120, 17, 'create_by', '创建者', 'bigint', 'Long', 'createBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 8,0, 1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (121, 17, 'create_time', '创建时间', 'datetime', 'Date', 'createTime', '0', '0', NULL, NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 9,0, 1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (122, 17, 'update_by', '更新者', 'bigint', 'Long', 'updateBy', '0', '0', '0', NULL, NULL, NULL, NULL, 'EQ', 'input', '', 10, 0,1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'), + (123, 17, 'update_time', '更新时间', 'datetime', 'Date', 'updateTime', '0', '0', NULL, NULL, NULL, NULL, NULL, 'EQ', 'datetime', '', 11,0, 1, '2023-12-04 22:22:22', 0, '2023-12-05 10:50:30'); + +drop table if exists mf_student; +create table if not exists mf_student ( + student_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + student_name varchar(30) not null, + student_age integer, + student_hobby varchar(30) not null, + student_gender char not null, + student_status char default '0'::bpchar, + student_birthday timestamp, + "version" INTEGER NULL DEFAULT 0, + "del_flag" SMALLINT NULL DEFAULT '0', + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + constraint "mf_student_pk" primary key (student_id) +); +comment on table mf_student is '学生信息单表'; +comment on column mf_student.student_id is '编号'; +COMMENT ON COLUMN "mf_student"."tenant_id" IS '租户编码'; +comment on column mf_student.student_name is '学生名称'; +comment on column mf_student.student_age is '年龄'; +comment on column mf_student.student_hobby is '爱好(0代码 1音乐 2电影)'; +comment on column mf_student.student_gender is '性别(1男 2女 3未知)'; +comment on column mf_student.student_status is '状态(0正常 1停用)'; +comment on column mf_student.student_birthday is '生日'; +COMMENT ON COLUMN "mf_student"."version" IS '乐观锁'; +COMMENT ON COLUMN "mf_student"."del_flag" IS '逻辑删除标志(0代表存在 1代表删除)'; +comment on column mf_student.create_by is '创建者'; +comment on column mf_student.create_time is '创建时间'; +comment on column mf_student.update_by is '更新者'; +comment on column mf_student.update_time is '更新时间'; + +drop table if exists mf_product; +create table if not exists mf_product ( + product_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + parent_id bigint NULL DEFAULT 0, + product_name varchar(30) NOT NULL, + order_num INTEGER DEFAULT 0, + status char(1) NULL DEFAULT '0', + "version" INTEGER NOT NULL DEFAULT 0, + "del_flag" SMALLINT NOT NULL DEFAULT '0', + create_by BIGINT NULL DEFAULT NULL, + create_time TIMESTAMP NULL DEFAULT NULL, + update_by BIGINT NULL DEFAULT NULL, + update_time TIMESTAMP NULL DEFAULT NULL, + constraint "mf_product_pk" PRIMARY KEY (product_id) +); +comment on table mf_product is '产品树表'; +comment on column mf_product.product_id is '产品id'; +COMMENT ON COLUMN "mf_product"."tenant_id" IS '租户编码'; +comment on column mf_product.parent_id is '父产品id'; +comment on column mf_product.product_name is '产品名称'; +comment on column mf_product.order_num is '显示顺序'; +comment on column mf_product.status is '产品状态(0正常 1停用)'; +COMMENT ON COLUMN "mf_product"."version" IS '乐观锁'; +COMMENT ON COLUMN "mf_product"."del_flag" IS '逻辑删除标志(0代表存在 1代表删除)'; +comment on column mf_product.create_by is '创建者'; +comment on column mf_product.create_time is '创建时间'; +comment on column mf_product.update_by is '更新者'; +comment on column mf_product.update_time is '更新时间'; + +drop table if exists mf_customer; +create table if not exists mf_customer ( + customer_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + customer_name varchar(30) not null DEFAULT '', + phonenumber varchar(11) NULL DEFAULT NULL, + gender char(1) NULL DEFAULT NULL, + birthday TIMESTAMP NULL DEFAULT NULL, + remark varchar(500) NULL DEFAULT NULL, + "version" INTEGER NOT NULL DEFAULT 0, + "del_flag" SMALLINT NOT NULL DEFAULT '0', + create_by BIGINT NULL DEFAULT NULL, + create_time TIMESTAMP NULL DEFAULT NULL, + update_by BIGINT NULL DEFAULT NULL, + update_time TIMESTAMP NULL DEFAULT NULL, + constraint "mf_customer_pk" PRIMARY KEY (customer_id) +); +comment on table mf_customer is '客户主表'; +comment on column mf_customer.customer_id is '客户id'; +COMMENT ON COLUMN "mf_customer"."tenant_id" IS '租户编码'; +comment on column mf_customer.customer_name is '客户姓名'; +comment on column mf_customer.phonenumber is '手机号码'; +comment on column mf_customer.gender is '客户性别'; +comment on column mf_customer.birthday is '客户生日'; +comment on column mf_customer.remark is '客户描述'; +COMMENT ON COLUMN "mf_customer"."version" IS '乐观锁'; +COMMENT ON COLUMN "mf_customer"."del_flag" IS '逻辑删除标志(0代表存在 1代表删除)'; +comment on column mf_customer.create_by is '创建者'; +comment on column mf_customer.create_time is '创建时间'; +comment on column mf_customer.update_by is '更新者'; +comment on column mf_customer.update_time is '更新时间'; + +DROP TABLE IF EXISTS mf_goods; +CREATE TABLE IF NOT EXISTS mf_goods ( + goods_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + customer_id bigint NOT NULL, + name varchar(30) NULL DEFAULT NULL, + weight INTEGER NULL DEFAULT 0, + price decimal(6,2) NULL DEFAULT NULL, + "date" timestamp NULL DEFAULT NULL, + "type" char(1) NULL DEFAULT NULL, + create_by BIGINT NULL DEFAULT NULL, + create_time TIMESTAMP NULL DEFAULT NULL, + update_by BIGINT NULL DEFAULT NULL, + update_time TIMESTAMP NULL DEFAULT NULL, + constraint "mf_goods_pk" PRIMARY KEY (goods_id) +); +comment on table mf_goods is '商品子表'; +comment on column mf_goods.goods_id is '商品id'; +COMMENT ON COLUMN "mf_goods"."tenant_id" IS '租户编码'; +comment on column mf_goods.customer_id is '客户id'; +comment on column mf_goods.name is '商品名称'; +comment on column mf_goods.weight is '商品重量'; +comment on column mf_goods.price is '商品价格'; +comment on column mf_goods."date" is '商品时间'; +comment on column mf_goods."type" is '商品种类'; +comment on column mf_goods.create_by is '创建者'; +comment on column mf_goods.create_time is '创建时间'; +comment on column mf_goods.update_by is '更新者'; +comment on column mf_goods.update_time is '更新时间'; + +-- 导出 表 public.pj_app_info 结构 +DROP TABLE IF EXISTS "pj_app_info"; +CREATE TABLE IF NOT EXISTS "pj_app_info" ( + "id" BIGINT NOT NULL, + "app_name" VARCHAR(255) NULL DEFAULT NULL, + "current_server" VARCHAR(255) NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "password" VARCHAR(255) NULL DEFAULT NULL, + CONSTRAINT pj_app_info_pkey PRIMARY KEY (id), + CONSTRAINT uidx01_app_info UNIQUE (app_name) +); + +-- 正在导出表 public.pj_app_info 的数据:1 rows +/*!40000 ALTER TABLE "pj_app_info" DISABLE KEYS */; +INSERT INTO "pj_app_info" ("id", "app_name", "current_server", "gmt_create", "gmt_modified", "password") VALUES + (1, 'ruoyi-worker', '127.0.0.1:10010', '2023-06-13 16:32:59.263', '2023-07-04 17:25:49.798', '123456'); +/*!40000 ALTER TABLE "pj_app_info" ENABLE KEYS */; + +-- 导出 表 public.pj_container_info 结构 +DROP TABLE IF EXISTS "pj_container_info"; +CREATE TABLE IF NOT EXISTS "pj_container_info" ( + "id" BIGINT NOT NULL, + "app_id" BIGINT NULL DEFAULT NULL, + "container_name" VARCHAR(255) NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "last_deploy_time" TIMESTAMP NULL DEFAULT NULL, + "source_info" VARCHAR(255) NULL DEFAULT NULL, + "source_type" INTEGER NULL DEFAULT NULL, + "status" INTEGER NULL DEFAULT NULL, + "version" VARCHAR(255) NULL DEFAULT NULL, + CONSTRAINT pj_container_info_pkey PRIMARY KEY (id) +); +CREATE INDEX idx01_container_info ON pj_container_info USING btree (app_id); + +-- 正在导出表 public.pj_container_info 的数据:0 rows +/*!40000 ALTER TABLE "pj_container_info" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_container_info" ENABLE KEYS */; + +-- 导出 表 public.pj_instance_info 结构 +DROP TABLE IF EXISTS "pj_instance_info"; +CREATE TABLE IF NOT EXISTS "pj_instance_info" ( + "id" BIGINT NOT NULL, + "actual_trigger_time" BIGINT NULL DEFAULT NULL, + "app_id" BIGINT NULL DEFAULT NULL, + "expected_trigger_time" BIGINT NULL DEFAULT NULL, + "finished_time" BIGINT NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "instance_id" BIGINT NULL DEFAULT NULL, + "instance_params" INTEGER NULL DEFAULT NULL, + "job_id" BIGINT NULL DEFAULT NULL, + "job_params" INTEGER NULL DEFAULT NULL, + "last_report_time" BIGINT NULL DEFAULT NULL, + "result" INTEGER NULL DEFAULT NULL, + "running_times" BIGINT NULL DEFAULT NULL, + "status" INTEGER NULL DEFAULT NULL, + "task_tracker_address" VARCHAR(255) NULL DEFAULT NULL, + "type" INTEGER NULL DEFAULT NULL, + "wf_instance_id" BIGINT NULL DEFAULT NULL, + CONSTRAINT pj_instance_info_pkey PRIMARY KEY (id) +); +CREATE INDEX idx01_instance_info ON pj_instance_info USING btree (job_id, status); +CREATE INDEX idx02_instance_info ON pj_instance_info USING btree (app_id, status); +CREATE INDEX idx03_instance_info ON pj_instance_info USING btree (instance_id, status); + +-- 正在导出表 public.pj_instance_info 的数据:-1 rows +/*!40000 ALTER TABLE "pj_instance_info" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_instance_info" ENABLE KEYS */; + +-- 导出 表 public.pj_job_info 结构 +DROP TABLE IF EXISTS "pj_job_info"; +CREATE TABLE IF NOT EXISTS "pj_job_info" ( + "id" BIGINT NOT NULL, + "alarm_config" VARCHAR(255) NULL DEFAULT NULL, + "app_id" BIGINT NULL DEFAULT NULL, + "concurrency" INTEGER NULL DEFAULT NULL, + "designated_workers" VARCHAR(255) NULL DEFAULT NULL, + "dispatch_strategy" INTEGER NULL DEFAULT NULL, + "execute_type" INTEGER NULL DEFAULT NULL, + "extra" VARCHAR(255) NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "instance_retry_num" INTEGER NULL DEFAULT NULL, + "instance_time_limit" BIGINT NULL DEFAULT NULL, + "job_description" VARCHAR(255) NULL DEFAULT NULL, + "job_name" VARCHAR(255) NULL DEFAULT NULL, + "job_params" INTEGER NULL DEFAULT NULL, + "lifecycle" VARCHAR(255) NULL DEFAULT NULL, + "log_config" VARCHAR(255) NULL DEFAULT NULL, + "max_instance_num" INTEGER NULL DEFAULT NULL, + "max_worker_count" INTEGER NULL DEFAULT NULL, + "min_cpu_cores" DOUBLE PRECISION NOT NULL, + "min_disk_space" DOUBLE PRECISION NOT NULL, + "min_memory_space" DOUBLE PRECISION NOT NULL, + "next_trigger_time" BIGINT NULL DEFAULT NULL, + "notify_user_ids" VARCHAR(255) NULL DEFAULT NULL, + "processor_info" VARCHAR(255) NULL DEFAULT NULL, + "processor_type" INTEGER NULL DEFAULT NULL, + "status" INTEGER NULL DEFAULT NULL, + "tag" VARCHAR(255) NULL DEFAULT NULL, + "task_retry_num" INTEGER NULL DEFAULT NULL, + "time_expression" VARCHAR(255) NULL DEFAULT NULL, + "time_expression_type" INTEGER NULL DEFAULT NULL, + CONSTRAINT pj_job_info_pkey PRIMARY KEY (id) +); +CREATE INDEX idx01_job_info ON pj_job_info USING btree (app_id, status, time_expression_type, next_trigger_time); + + +-- 正在导出表 public.pj_job_info 的数据:4 rows +/*!40000 ALTER TABLE "pj_job_info" DISABLE KEYS */; +INSERT INTO "pj_job_info" ("id", "alarm_config", "app_id", "concurrency", "designated_workers", "dispatch_strategy", "execute_type", "extra", "gmt_create", "gmt_modified", "instance_retry_num", "instance_time_limit", "job_description", "job_name", "job_params", "lifecycle", "log_config", "max_instance_num", "max_worker_count", "min_cpu_cores", "min_disk_space", "min_memory_space", "next_trigger_time", "notify_user_ids", "processor_info", "processor_type", "status", "tag", "task_retry_num", "time_expression", "time_expression_type") VALUES + (1, '{"alertThreshold":0,"silenceWindowLen":0,"statisticWindowLen":0}', 1, 5, '', 2, 1, NULL, '2023-06-02 15:01:27.717', '2023-07-04 17:22:12.374', 1, 0, '', '单机处理器执行测试', NULL, '{}', '{"type":1}', 0, 0, 0, 0, 0, NULL, NULL, 'com.ruoyi.job.processors.StandaloneProcessorDemo', 1, 2, NULL, 1, '30000', 3), + (2, '{"alertThreshold":0,"silenceWindowLen":0,"statisticWindowLen":0}', 1, 5, '', 1, 2, NULL, '2023-06-02 15:04:45.342', '2023-07-04 17:22:12.816', 0, 0, NULL, '广播处理器测试', NULL, '{}', '{"type":1}', 0, 0, 0, 0, 0, NULL, NULL, 'com.ruoyi.job.processors.BroadcastProcessorDemo', 1, 2, NULL, 1, '30000', 3), + (3, '{"alertThreshold":0,"silenceWindowLen":0,"statisticWindowLen":0}', 1, 5, '', 1, 4, NULL, '2023-06-02 15:13:23.519', '2023-06-02 16:03:22.421', 0, 0, NULL, 'Map处理器测试', NULL, '{}', '{"type":1}', 0, 0, 0, 0, 0, NULL, NULL, 'com.ruoyi.job.processors.MapProcessorDemo', 1, 2, NULL, 1, '1000', 3), + (4, '{"alertThreshold":0,"silenceWindowLen":0,"statisticWindowLen":0}', 1, 5, '', 1, 3, NULL, '2023-06-02 15:45:25.896', '2023-06-02 16:03:23.125', 0, 0, NULL, 'MapReduce处理器测试', NULL, '{}', '{"type":1}', 0, 0, 0, 0, 0, NULL, NULL, 'com.ruoyi.job.processors.MapReduceProcessorDemo', 1, 2, NULL, 1, '1000', 3); +/*!40000 ALTER TABLE "pj_job_info" ENABLE KEYS */; + +-- 导出 表 public.pj_oms_lock 结构 +DROP TABLE IF EXISTS "pj_oms_lock"; +CREATE TABLE IF NOT EXISTS "pj_oms_lock" ( + "id" BIGINT NOT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "lock_name" VARCHAR(255) NULL DEFAULT NULL, + "max_lock_time" BIGINT NULL DEFAULT NULL, + "ownerip" VARCHAR(255) NULL DEFAULT NULL, + CONSTRAINT pj_oms_lock_pkey PRIMARY KEY (id), + CONSTRAINT uidx01_oms_lock UNIQUE (lock_name) +); + +-- 正在导出表 public.pj_oms_lock 的数据:-1 rows +/*!40000 ALTER TABLE "pj_oms_lock" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_oms_lock" ENABLE KEYS */; + +-- 导出 表 public.pj_server_info 结构 +DROP TABLE IF EXISTS "pj_server_info"; +CREATE TABLE IF NOT EXISTS "pj_server_info" ( + "id" BIGINT NOT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "ip" VARCHAR(255) NULL DEFAULT NULL, + CONSTRAINT pj_server_info_pkey PRIMARY KEY (id), + CONSTRAINT uidx01_server_info UNIQUE (ip) +); +CREATE INDEX idx01_server_info ON pj_server_info USING btree (gmt_modified); + +-- 正在导出表 public.pj_server_info 的数据:-1 rows +/*!40000 ALTER TABLE "pj_server_info" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_server_info" ENABLE KEYS */; + +-- 导出 表 public.pj_user_info 结构 +DROP TABLE IF EXISTS "pj_user_info"; +CREATE TABLE IF NOT EXISTS "pj_user_info" ( + "id" BIGINT NOT NULL, + "email" VARCHAR(255) NULL DEFAULT NULL, + "extra" VARCHAR(255) NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "password" VARCHAR(255) NULL DEFAULT NULL, + "phone" VARCHAR(255) NULL DEFAULT NULL, + "username" VARCHAR(255) NULL DEFAULT NULL, + "web_hook" VARCHAR(255) NULL DEFAULT NULL, + CONSTRAINT pj_user_info_pkey PRIMARY KEY (id) +); +CREATE INDEX uidx01_user_info ON pj_user_info USING btree (username); +CREATE INDEX uidx02_user_info ON pj_user_info USING btree (email); + +-- 正在导出表 public.pj_user_info 的数据:-1 rows +/*!40000 ALTER TABLE "pj_user_info" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_user_info" ENABLE KEYS */; + +-- 导出 表 public.pj_workflow_info 结构 +DROP TABLE IF EXISTS "pj_workflow_info"; +CREATE TABLE IF NOT EXISTS "pj_workflow_info" ( + "id" BIGINT NOT NULL, + "app_id" BIGINT NULL DEFAULT NULL, + "extra" VARCHAR(255) NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "lifecycle" VARCHAR(255) NULL DEFAULT NULL, + "max_wf_instance_num" INTEGER NULL DEFAULT NULL, + "next_trigger_time" BIGINT NULL DEFAULT NULL, + "notify_user_ids" VARCHAR(255) NULL DEFAULT NULL, + "pedag" TEXT NULL DEFAULT NULL, + "status" INTEGER NULL DEFAULT NULL, + "time_expression" VARCHAR(255) NULL DEFAULT NULL, + "time_expression_type" INTEGER NULL DEFAULT NULL, + "wf_description" VARCHAR(255) NULL DEFAULT NULL, + "wf_name" VARCHAR(255) NULL DEFAULT NULL, + CONSTRAINT pj_workflow_info_pkey PRIMARY KEY (id) +); +CREATE INDEX idx01_workflow_info ON pj_workflow_info USING btree (app_id, status, time_expression_type, next_trigger_time); + + +-- 正在导出表 public.pj_workflow_info 的数据:-1 rows +/*!40000 ALTER TABLE "pj_workflow_info" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_workflow_info" ENABLE KEYS */; + +-- 导出 表 public.pj_workflow_instance_info 结构 +DROP TABLE IF EXISTS "pj_workflow_instance_info"; +CREATE TABLE IF NOT EXISTS "pj_workflow_instance_info" ( + "id" BIGINT NOT NULL, + "actual_trigger_time" BIGINT NULL DEFAULT NULL, + "app_id" BIGINT NULL DEFAULT NULL, + "dag" TEXT NULL DEFAULT NULL, + "expected_trigger_time" BIGINT NULL DEFAULT NULL, + "finished_time" BIGINT NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NULL DEFAULT NULL, + "gmt_modified" TIMESTAMP NULL DEFAULT NULL, + "parent_wf_instance_id" BIGINT NULL DEFAULT NULL, + "result" TEXT NULL DEFAULT NULL, + "status" INTEGER NULL DEFAULT NULL, + "wf_context" TEXT NULL DEFAULT NULL, + "wf_init_params" TEXT NULL DEFAULT NULL, + "wf_instance_id" BIGINT NULL DEFAULT NULL, + "workflow_id" BIGINT NULL DEFAULT NULL, + CONSTRAINT pj_workflow_instance_info_pkey PRIMARY KEY (id), + CONSTRAINT uidx01_wf_instance UNIQUE (wf_instance_id) +); +CREATE INDEX idx01_wf_instance ON pj_workflow_instance_info USING btree (workflow_id, status, app_id, expected_trigger_time); + + +-- 正在导出表 public.pj_workflow_instance_info 的数据:-1 rows +/*!40000 ALTER TABLE "pj_workflow_instance_info" DISABLE KEYS */; +/*!40000 ALTER TABLE "pj_workflow_instance_info" ENABLE KEYS */; + +-- 导出 表 public.pj_workflow_node_info 结构 +DROP TABLE IF EXISTS "pj_workflow_node_info"; +CREATE TABLE IF NOT EXISTS "pj_workflow_node_info" ( + "id" BIGINT NOT NULL, + "app_id" BIGINT NOT NULL, + "enable" BOOLEAN NOT NULL, + "extra" TEXT NULL DEFAULT NULL, + "gmt_create" TIMESTAMP NOT NULL, + "gmt_modified" TIMESTAMP NOT NULL, + "job_id" BIGINT NULL DEFAULT NULL, + "node_name" VARCHAR(255) NULL DEFAULT NULL, + "node_params" TEXT NULL DEFAULT NULL, + "skip_when_failed" BOOLEAN NOT NULL, + "type" INTEGER NULL DEFAULT NULL, + "workflow_id" BIGINT NULL DEFAULT NULL, + CONSTRAINT pj_workflow_node_info_pkey PRIMARY KEY (id) +); +CREATE INDEX idx01_workflow_node_info ON pj_workflow_node_info USING btree (workflow_id, gmt_create); + + +drop table if exists sys_client; +create table sys_client ( + id bigint NOT NULL, + client_id varchar(64) default ''::varchar, + client_key varchar(32) default ''::varchar, + client_secret varchar(255) default ''::varchar, + grant_type varchar(255) default ''::varchar, + device_type varchar(32) default ''::varchar, + active_timeout INTEGER default 1800, + timeout INTEGER default 604800, + status char(1) default '0'::bpchar, + "version" INTEGER NULL DEFAULT 0, + del_flag smallint default 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + constraint sys_client_pk primary key (id) +); + +comment on table sys_client is '系统授权表'; +comment on column sys_client.id is '主建'; +comment on column sys_client.client_id is '客户端id'; +comment on column sys_client.client_key is '客户端key'; +comment on column sys_client.client_secret is '客户端秘钥'; +comment on column sys_client.grant_type is '授权类型'; +comment on column sys_client.device_type is '设备类型'; +comment on column sys_client.active_timeout is 'token活跃超时时间'; +comment on column sys_client.timeout is 'token固定超时'; +comment on column sys_client.status is '状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_client"."version" IS '乐观锁'; +comment on column sys_client.del_flag is '删除标志(0代表存在 1代表删除)'; +comment on column sys_client.create_by is '创建者'; +comment on column sys_client.create_time is '创建时间'; +comment on column sys_client.update_by is '更新者'; +comment on column sys_client.update_time is '更新时间'; + +insert into sys_client values (1, 'e5cd7e4891bf95d1d19206ce24a7b32e', 'pc', 'pc123', 'password,social', 'pc', 1800, 604800, 0, 0,0, 1, now(), 1, now()); +insert into sys_client values (2, '428a8310cd442757ae699df5d894f051', 'app', 'app123', 'password,sms,social', 'android', 1800, 604800, 0,0, 0, 1, now(), 1, now()); + +drop table if exists sys_config; +create table if not exists sys_config +( + config_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + config_name varchar(100) default ''::varchar, + config_key varchar(100) default ''::varchar, + config_value varchar(500) default ''::varchar, + config_type char default 'N'::bpchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint sys_config_pk primary key (config_id) +); + +comment on table sys_config is '参数配置表'; +comment on column sys_config.config_id is '参数主键'; +COMMENT ON COLUMN "sys_config"."tenant_id" IS '租户编号'; +comment on column sys_config.config_name is '参数名称'; +comment on column sys_config.config_key is '参数键名'; +comment on column sys_config.config_value is '参数键值'; +comment on column sys_config.config_type is '系统内置(Y是 N否)'; +COMMENT ON COLUMN "sys_config"."version" IS '乐观锁'; +comment on column sys_config.create_by is '创建者'; +comment on column sys_config.create_time is '创建时间'; +comment on column sys_config.update_by is '更新者'; +comment on column sys_config.update_time is '更新时间'; +comment on column sys_config.remark is '备注'; + +insert into sys_config values(1,0, '主框架页-默认皮肤样式名称', 'sys.index.skinName', 'skin-blue', 'Y', 0,1, now(), null, null, '蓝色 skin-blue、绿色 skin-green、紫色 skin-purple、红色 skin-red、黄色 skin-yellow' ); +insert into sys_config values(2,0, '用户管理-账号初始密码', 'sys.user.initPassword', '123456', 'Y', 0,1, now(), null, null, '初始化密码 123456' ); +insert into sys_config values(3,0, '主框架页-侧边栏主题', 'sys.index.sideTheme', 'theme-dark', 'Y', 0,1, now(), null, null, '深色主题theme-dark,浅色主题theme-light' ); +insert into sys_config values(5,0, '账号自助-是否开启用户注册功能', 'sys.account.registerUser', 'false', 'Y', 0,1, now(), null, null, '是否开启注册用户功能(true开启,false关闭)'); +insert into sys_config values(6,0, 'OSS预览列表资源开关', 'sys.oss.previewListResource', 'true', 'Y', 0,1, now(), null, null, 'true:开启, false:关闭'); + +drop table if exists sys_dept; +create table if not exists sys_dept +( + dept_id bigint NOT NULL, + tenant_id bigint default 0, + parent_id bigint default 0, + ancestors varchar(760) default ''::varchar, + dept_name varchar(30) default ''::varchar, + order_num INTEGER default 0, + leader varchar(20) default ''::varchar, + phone varchar(11) default null::varchar, + email varchar(50) default null::varchar, + status char default '0'::bpchar, + "version" INTEGER NULL DEFAULT 0, + del_flag smallint default 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + constraint "sys_dept_pk" primary key (dept_id) +); + +comment on table sys_dept is '部门表'; +comment on column sys_dept.dept_id is '部门ID'; +comment on column sys_dept.tenant_id is '租户编号'; +comment on column sys_dept.parent_id is '父部门ID'; +comment on column sys_dept.ancestors is '祖级列表'; +comment on column sys_dept.dept_name is '部门名称'; +comment on column sys_dept.order_num is '显示顺序'; +comment on column sys_dept.leader is '负责人'; +comment on column sys_dept.phone is '联系电话'; +comment on column sys_dept.email is '邮箱'; +comment on column sys_dept.status is '部门状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_dept"."version" IS '乐观锁'; +comment on column sys_dept.del_flag is '删除标志(0代表存在 1代表删除)'; +comment on column sys_dept.create_by is '创建者'; +comment on column sys_dept.create_time is '创建时间'; +comment on column sys_dept.update_by is '更新者'; +comment on column sys_dept.update_time is '更新时间'; + +INSERT INTO sys_dept VALUES + (1, 0, 0, '0', 'Ruoyi-Flex公司', 0, 'ruoyi-flex', '18888888888', 'dataprince@foxmail.com', '0', 0, 0, 1, '2023-06-03 21:32:28', 1, '2023-09-25 20:21:11'); + + +drop table if exists sys_dict_data; +create table if not exists sys_dict_data +( + dict_code bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + dict_sort INTEGER default 0, + dict_label varchar(100) default ''::varchar, + dict_value varchar(100) default ''::varchar, + dict_type varchar(100) default ''::varchar, + css_class varchar(100) default null::varchar, + list_class varchar(100) default null::varchar, + is_default char default 'N'::bpchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint sys_dict_data_pk primary key (dict_code) +); + +comment on table sys_dict_data is '字典数据表'; +comment on column sys_dict_data.dict_code is '字典编码'; +COMMENT ON COLUMN "sys_dict_data"."tenant_id" IS '租户编号'; +comment on column sys_dict_data.dict_sort is '字典排序'; +comment on column sys_dict_data.dict_label is '字典标签'; +comment on column sys_dict_data.dict_value is '字典键值'; +comment on column sys_dict_data.dict_type is '字典类型'; +comment on column sys_dict_data.css_class is '样式属性(其他样式扩展)'; +comment on column sys_dict_data.list_class is '表格回显样式'; +comment on column sys_dict_data.is_default is '是否默认(Y是 N否)'; +COMMENT ON COLUMN "sys_dict_data"."version" IS '乐观锁'; +comment on column sys_dict_data.create_by is '创建者'; +comment on column sys_dict_data.create_time is '创建时间'; +comment on column sys_dict_data.update_by is '更新者'; +comment on column sys_dict_data.update_time is '更新时间'; +comment on column sys_dict_data.remark is '备注'; + +INSERT INTO "sys_dict_data" ("dict_code", "tenant_id", "dict_sort", "dict_label", "dict_value", "dict_type", "css_class", "list_class", "is_default", "version", "create_by", "create_time", "update_by", "update_time", "remark") VALUES + (1, 0, 1, '男', '0', 'sys_user_gender', '', '', 'Y', 0, 1, '2023-06-03 21:32:30', 1, '2023-09-20 09:53:27', '性别男'), + (2, 0, 2, '女', '1', 'sys_user_gender', '', '', 'N', 0, 1, '2023-06-03 21:32:30', 1, '2023-09-20 09:53:27', '性别女'), + (3, 0, 3, '未知', '2', 'sys_user_gender', '', '', 'N', 0, 1, '2023-06-03 21:32:30', 1, '2023-09-20 09:53:27', '性别未知'), + (4, 0, 1, '显示', '0', 'sys_show_hide', '', 'primary', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '显示菜单'), + (5, 0, 2, '隐藏', '1', 'sys_show_hide', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '隐藏菜单'), + (6, 0, 1, '正常', '0', 'sys_normal_disable', '', 'primary', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '正常状态'), + (7, 0, 2, '停用', '1', 'sys_normal_disable', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '停用状态'), + (8, 0, 1, '正常', '0', 'sys_job_status', '', 'primary', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '正常状态'), + (9, 0, 2, '暂停', '1', 'sys_job_status', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '停用状态'), + (10, 0, 1, '默认', 'DEFAULT', 'sys_job_group', '', '', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '默认分组'), + (11, 0, 2, '系统', 'SYSTEM', 'sys_job_group', '', '', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '系统分组'), + (12, 0, 1, '是', 'Y', 'sys_yes_no', '', 'primary', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '系统默认是'), + (13, 0, 2, '否', 'N', 'sys_yes_no', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '系统默认否'), + (14, 0, 1, '通知', '1', 'sys_notice_type', '', 'warning', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '通知'), + (15, 0, 2, '公告', '2', 'sys_notice_type', '', 'success', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '公告'), + (16, 0, 1, '正常', '0', 'sys_notice_status', '', 'primary', 'Y', 0, 1, '2023-06-03 21:32:30', 1, NULL, '正常状态'), + (17, 0, 2, '关闭', '1', 'sys_notice_status', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '关闭状态'), + (18, 0, 99, '其他', '0', 'sys_oper_type', '', 'info', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '其他操作'), + (19, 0, 1, '新增', '1', 'sys_oper_type', '', 'info', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '新增操作'), + (20, 0, 2, '修改', '2', 'sys_oper_type', '', 'info', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '修改操作'), + (21, 0, 3, '删除', '3', 'sys_oper_type', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '删除操作'), + (22, 0, 4, '授权', '4', 'sys_oper_type', '', 'primary', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '授权操作'), + (23, 0, 5, '导出', '5', 'sys_oper_type', '', 'warning', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '导出操作'), + (24, 0, 6, '导入', '6', 'sys_oper_type', '', 'warning', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '导入操作'), + (25, 0, 7, '强退', '7', 'sys_oper_type', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '强退操作'), + (26, 0, 8, '生成代码', '8', 'sys_oper_type', '', 'warning', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '生成操作'), + (27, 0, 9, '清空数据', '9', 'sys_oper_type', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '清空操作'), + (28, 0, 1, '成功', '0', 'sys_common_status', '', 'primary', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '正常状态'), + (29, 0, 2, '失败', '1', 'sys_common_status', '', 'danger', 'N', 0, 1, '2023-06-03 21:32:30', 1, NULL, '停用状态'), + (30, 0, 1, '密码认证', 'password', 'sys_grant_type', 'el-check-tag', 'default', 'N', 0, 1, '2023-10-21 11:10:51', 1, '2023-10-21 11:10:51', '密码认证'), + (31, 0, 2, '短信认证', 'sms', 'sys_grant_type', 'el-check-tag', 'default', 'N', 0, 1, '2023-10-21 11:10:51', 1, '2023-10-21 11:10:51', '短信认证'), + (32, 0, 3, '邮件认证', 'email', 'sys_grant_type', 'el-check-tag', 'default', 'N', 0, 1, '2023-10-21 11:10:51', 1, '2023-10-21 11:10:51', '邮件认证'), + (33, 0, 4, '小程序认证', 'xcx', 'sys_grant_type', 'el-check-tag', 'default', 'N', 0, 1, '2023-10-21 11:10:51', 1, '2023-10-21 11:10:51', '小程序认证'), + (34, 0, 5, '三方登录认证', 'social', 'sys_grant_type', 'el-check-tag', 'default', 'N', 0, 1, '2023-10-21 11:10:51', 1, '2023-10-21 11:10:51', '三方登录认证'), + (35, 0, 1, 'PC', 'pc', 'sys_device_type', '', 'default', 'N', 0, 1, '2023-10-21 11:41:10', 1, '2023-10-21 11:41:10', 'PC'), + (36, 0, 2, '安卓', 'android', 'sys_device_type', '', 'default', 'N', 0, 1, '2023-10-21 11:41:10', 1, '2023-10-21 11:41:10', '安卓'), + (37, 0, 3, 'iOS', 'ios', 'sys_device_type', '', 'default', 'N', 0, 1, '2023-10-21 11:41:10', 1, '2023-10-21 11:41:10', 'iOS'), + (38, 0, 4, '小程序', 'xcx', 'sys_device_type', '', 'default', 'N', 0, 1, '2023-10-21 11:41:10', 1, '2023-10-21 11:41:10', '小程序'), + (100, 0, 0, '正常', '0', 'sys_student_status', NULL, 'primary', 'N', 0, 1, '2023-06-03 21:53:50', 1, '2023-06-03 21:55:24', NULL), + (101, 0, 0, '停用', '1', 'sys_student_status', NULL, 'danger', 'N', 0, 1, '2023-06-03 21:54:11', 1, '2023-06-03 21:55:31', NULL), + (102, 0, 0, '代码', '0', 'sys_student_hobby', NULL, 'primary', 'N', 0, 1, '2023-06-04 16:40:02', 1, NULL, NULL), + (103, 0, 0, '音乐', '1', 'sys_student_hobby', NULL, 'success', 'N', 0, 1, '2023-06-04 16:40:24', 1, NULL, NULL), + (104, 0, 0, '电影', '2', 'sys_student_hobby', NULL, 'warning', 'N', 0, 1, '2023-06-04 16:40:40', 1, '2023-06-04 16:40:49', NULL), + (105, 0, 0, '计算机', '1', 'sys_goods_type', NULL, 'primary', 'N', 0, 1, '2023-06-05 07:23:48', 1, NULL, NULL), + (106, 0, 0, '打印设备', '2', 'sys_goods_type', NULL, 'success', 'N', 0, 1, '2023-06-05 07:24:14', 1, NULL, NULL), + (107, 0, 3, '衣服', '3', 'sys_goods_type', NULL, 'info', 'N', 0, 1, '2023-06-05 07:24:35', 1, NULL, NULL), + (111, 0, 4, '网络设备', '4', 'sys_goods_type', NULL, 'default', NULL, 0, 1, '2023-09-19 17:31:46', 1, '2023-09-19 17:31:46', NULL), + (65923231885905920, 0, 1, '桌面微机', 'PC', 'sys_app_type', NULL, 'default', 'N', 0, 1, '2023-10-01 10:56:23', 1, '2023-10-01 10:56:23', NULL), + (65923379802230784, 0, 2, '平板', 'pad', 'sys_app_type', NULL, 'default', 'N', 0, 1, '2023-10-01 10:56:59', 1, '2023-10-01 10:56:59', NULL), + (65923470604718080, 0, 3, '手机', 'phone', 'sys_app_type', NULL, 'default', 'N', 0, 1, '2023-10-01 10:57:20', 1, '2023-10-01 10:57:20', NULL); + +drop table if exists sys_dict_type; +create table if not exists sys_dict_type +( + dict_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + dict_name varchar(100) default ''::varchar, + dict_type varchar(100) default ''::varchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint sys_dict_type_pk primary key (dict_id) +); +DROP INDEX if exists sys_dict_type_index1; +create unique index sys_dict_type_index1 ON sys_dict_type (tenant_id,dict_type); + +comment on table sys_dict_type is '字典类型表'; +comment on column sys_dict_type.dict_id is '字典主键'; +COMMENT ON COLUMN "sys_dict_type"."tenant_id" IS '租户编号'; +comment on column sys_dict_type.dict_name is '字典名称'; +comment on column sys_dict_type.dict_type is '字典类型'; +COMMENT ON COLUMN "sys_dict_type"."version" IS '乐观锁'; +comment on column sys_dict_type.create_by is '创建者'; +comment on column sys_dict_type.create_time is '创建时间'; +comment on column sys_dict_type.update_by is '更新者'; +comment on column sys_dict_type.update_time is '更新时间'; +comment on column sys_dict_type.remark is '备注'; + +INSERT INTO sys_dict_type VALUES + (1,0, '用户性别', 'sys_user_gender', 0,1, '2023-06-03 21:32:30', 1, '2023-09-20 09:53:27', '用户性别列表'), + (2,0, '菜单状态', 'sys_show_hide', 0,1, '2023-06-03 21:32:30', 1, NULL, '菜单状态列表'), + (3,0, '系统开关', 'sys_normal_disable', 0,1, '2023-06-03 21:32:30', 1, NULL, '系统开关列表'), + (4,0, '任务状态', 'sys_job_status', 0,1, '2023-06-03 21:32:30', 1, NULL, '任务状态列表'), + (5,0, '任务分组', 'sys_job_group', 0,1, '2023-06-03 21:32:30', 1, NULL, '任务分组列表'), + (6,0, '系统是否', 'sys_yes_no', 0,1, '2023-06-03 21:32:30', 1, NULL, '系统是否列表'), + (7,0, '通知类型', 'sys_notice_type', 0,1, '2023-06-03 21:32:30', 1, NULL, '通知类型列表'), + (8,0, '通知状态', 'sys_notice_status', 0,1, '2023-06-03 21:32:30', 1, NULL, '通知状态列表'), + (9,0, '操作类型', 'sys_oper_type', 0,1, '2023-06-03 21:32:30', 1, NULL, '操作类型列表'), + (10,0, '系统状态', 'sys_common_status', 0,1, '2023-06-03 21:32:30', 1, NULL, '登录状态列表'), + (11,0, '授权类型', 'sys_grant_type', 0,1, '2023-10-21 11:06:33', 1, '2023-10-21 11:06:33', '认证授权类型'), + (12,0, '设备类型', 'sys_device_type', 0,1, '2023-10-21 11:38:41', 1, '2023-10-21 11:38:41', '客户端设备类型'), + (100,0, '学生状态', 'sys_student_status', 0,1, '2023-06-03 21:52:47', 1, '2023-06-03 21:53:09', NULL), + (101,0, '爱好', 'sys_student_hobby', 0,1, '2023-06-04 16:39:16', 1, NULL, NULL), + (102,0, '商品种类', 'sys_goods_type', 0,1, '2023-06-05 07:23:20', 1, NULL, NULL), + (65922863223361536, 0,'系统类型', 'sys_app_type', 0,1, '2023-10-01 10:54:55', 1, '2023-10-01 10:54:55', '系统类型列表'); + +drop table if exists sys_logininfor; +create table if not exists sys_logininfor +( + info_id bigint NOT NULL, + tenant_id BIGINT NOT NULL DEFAULT '0', + user_name varchar(50) default ''::varchar, + client_key VARCHAR(32) NULL DEFAULT ''::varchar, + device_type VARCHAR(32) NULL DEFAULT ''::varchar, + ipaddr varchar(128) default ''::varchar, + login_location varchar(255) default ''::varchar, + browser varchar(50) default ''::varchar, + os varchar(50) default ''::varchar, + status char default '0'::bpchar, + msg varchar(255) default ''::varchar, + login_time timestamp, + constraint sys_logininfor_pk primary key (info_id) +); + +create index idx_sys_logininfor_s ON sys_logininfor (status); +create index idx_sys_logininfor_lt ON sys_logininfor (login_time); + +comment on table sys_logininfor is '系统访问记录'; +comment on column sys_logininfor.info_id is '访问ID'; +COMMENT ON COLUMN "sys_logininfor"."tenant_id" IS '租户编号'; +comment on column sys_logininfor.user_name is '用户账号'; +COMMENT ON COLUMN "sys_logininfor"."client_key" IS '客户端'; +COMMENT ON COLUMN "sys_logininfor"."device_type" IS '设备类型'; +comment on column sys_logininfor.ipaddr is '登录IP地址'; +comment on column sys_logininfor.login_location is '登录地点'; +comment on column sys_logininfor.browser is '浏览器类型'; +comment on column sys_logininfor.os is '操作系统'; +comment on column sys_logininfor.status is '登录状态(0成功 1失败)'; +comment on column sys_logininfor.msg is '提示消息'; +comment on column sys_logininfor.login_time is '访问时间'; + +drop table if exists sys_menu; +create table if not exists sys_menu +( + menu_id bigint NOT NULL, + menu_name varchar(50) not null, + parent_id bigint default 0, + order_num INTEGER default 0, + path varchar(200) default ''::varchar, + component varchar(255) default null::varchar, + query_param varchar(255) default null::varchar, + is_frame char default '1'::bpchar, + is_cache char default '0'::bpchar, + menu_type char default ''::bpchar, + visible char default '0'::bpchar, + status char default '0'::bpchar, + perms varchar(100) default null::varchar, + icon varchar(100) default '#'::varchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default ''::varchar, + constraint "sys_menu_pk" primary key (menu_id) +); + +comment on table sys_menu is '菜单权限表'; +comment on column sys_menu.menu_id is '菜单ID'; +comment on column sys_menu.menu_name is '菜单名称'; +comment on column sys_menu.parent_id is '父菜单ID'; +comment on column sys_menu.order_num is '显示顺序'; +comment on column sys_menu.path is '路由地址'; +comment on column sys_menu.component is '组件路径'; +comment on column sys_menu.query_param is '路由参数'; +comment on column sys_menu.is_frame is '是否为外链(0是 1否)'; +comment on column sys_menu.is_cache is '是否缓存(0缓存 1不缓存)'; +comment on column sys_menu.menu_type is '菜单类型(M目录 C菜单 F按钮)'; +comment on column sys_menu.visible is '显示状态(0显示 1隐藏)'; +comment on column sys_menu.status is '菜单状态(0正常 1停用)'; +comment on column sys_menu.perms is '权限标识'; +comment on column sys_menu.icon is '菜单图标'; +COMMENT ON COLUMN "sys_menu"."version" IS '乐观锁'; +comment on column sys_menu.create_by is '创建者'; +comment on column sys_menu.create_time is '创建时间'; +comment on column sys_menu.update_by is '更新者'; +comment on column sys_menu.update_time is '更新时间'; +comment on column sys_menu.remark is '备注'; + +INSERT INTO "sys_menu" ("menu_id", "menu_name", "parent_id", "order_num", "path", "component", "query_param", "is_frame", "is_cache", "menu_type", "visible", "status", "perms", "icon", "version", "create_by", "create_time", "update_by", "update_time", "remark") VALUES + (1, '系统管理', 0, 1, 'system', NULL, '', '1', '0', 'M', '0', '0', '', 'system', 0, 1, '2023-06-03 21:32:28', 1, NULL, '系统管理目录'), + (100, '用户管理', 1, 1, 'user', 'system/user/index', '', '1', '0', 'C', '0', '0', 'system:user:list', 'user', 0, 1, '2023-06-03 21:32:28', 1, NULL, '用户管理菜单'), + (101, '角色管理', 1, 2, 'role', 'system/role/index', '', '1', '0', 'C', '0', '0', 'system:role:list', 'peoples', 0, 1, '2023-06-03 21:32:28', 1, NULL, '角色管理菜单'), + (102, '菜单管理', 1, 3, 'menu', 'system/menu/index', '', '1', '0', 'C', '0', '0', 'system:menu:list', 'tree-table', 0, 1, '2023-06-03 21:32:28', 1, NULL, '菜单管理菜单'), + (103, '部门管理', 1, 4, 'dept', 'system/dept/index', '', '1', '0', 'C', '0', '0', 'system:dept:list', 'tree', 0, 1, '2023-06-03 21:32:28', 1, NULL, '部门管理菜单'), + (104, '岗位管理', 1, 5, 'post', 'system/post/index', '', '1', '0', 'C', '0', '0', 'system:post:list', 'post', 0, 1, '2023-06-03 21:32:28', 1, NULL, '岗位管理菜单'), + (105, '字典管理', 1, 6, 'dict', 'system/dict/index', '', '1', '0', 'C', '0', '0', 'system:dict:list', 'dict', 0, 1, '2023-06-03 21:32:28', 1, NULL, '字典管理菜单'), + (106, '参数设置', 1, 7, 'config', 'system/config/index', '', '1', '0', 'C', '0', '0', 'system:config:list', 'edit', 0, 1, '2023-06-03 21:32:28', 1, NULL, '参数设置菜单'), + (107, '通知公告', 1, 8, 'notice', 'system/notice/index', '', '1', '0', 'C', '0', '0', 'system:notice:list', 'message', 0, 1, '2023-06-03 21:32:28', 1, NULL, '通知公告菜单'), + (108, '日志管理', 1, 9, 'log', '', '', '1', '0', 'M', '0', '0', '', 'log', 0, 1, '2023-06-03 21:32:28', 1, NULL, '日志管理菜单'), + (109, '在线用户', 2, 1, 'online', 'monitor/online/index', '', '1', '0', 'C', '0', '0', 'monitor:online:list', 'online', 0, 1, '2023-06-03 21:32:28', 1, NULL, '在线用户菜单'), + (110, '任务调度', 2, 2, 'powerjob', 'monitor/powerjob/index', '', '1', '0', 'C', '0', '0', 'monitor:powerjob:list', 'job', 0, 1, '2023-06-03 21:32:28', 1, NULL, '定时任务菜单'), + (112, '服务监控', 2, 4, 'admin', 'monitor/admin/index', '', '1', '0', 'C', '0', '0', 'monitor:admin:list', 'server', 0, 1, '2023-06-03 21:32:28', 1, NULL, '服务监控菜单'), + (113, '缓存监控', 2, 5, 'cache', 'monitor/cache/index', '', '1', '0', 'C', '0', '0', 'monitor:cache:list', 'redis', 0, 1, '2023-06-03 21:32:28', 1, NULL, '缓存监控菜单'), + (115, '表单构建', 3, 1, 'build', 'tool/build/index', '', '1', '0', 'C', '0', '0', 'tool:build:list', 'build', 0, 1, '2023-06-03 21:32:28', 1, NULL, '表单构建菜单'), + (116, '代码生成', 3, 2, 'gen', 'tool/gen/index', '', '1', '0', 'C', '0', '0', 'tool:gen:list', 'code', 0, 1, '2023-06-03 21:32:28', 1, NULL, '代码生成菜单'), + (117, '系统接口', 3, 3, 'http://localhost:8080/swagger-ui/index.html', '', '', '0', '0', 'M', '0', '0', 'tool:swagger:list', 'swagger', 0, 1, '2023-06-03 21:32:29', 1, '2023-07-28 21:09:07', '系统接口菜单'), + (118, '文件管理', 1, 10, 'oss', 'system/oss/index', '', '1', '0', 'C', '0', '0', 'system:oss:list', 'upload', 0, 1, '2023-12-03 08:46:11', 1, '2023-12-03 08:46:11', '文件管理菜单'), + (500, '操作日志', 108, 1, 'operlog', 'monitor/operlog/index', '', '1', '0', 'C', '0', '0', 'monitor:operlog:list', 'form', 0, 1, '2023-06-03 21:32:29', 1, NULL, '操作日志菜单'), + (501, '登录日志', 108, 2, 'logininfor', 'monitor/logininfor/index', '', '1', '0', 'C', '0', '0', 'monitor:logininfor:list', 'logininfor', 0, 1, '2023-06-03 21:32:29', 1, NULL, '登录日志菜单'), + (1000, '用户查询', 100, 1, '', '', '', '1', '0', 'F', '0', '0', 'system:user:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1001, '用户新增', 100, 2, '', '', '', '1', '0', 'F', '0', '0', 'system:user:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1002, '用户修改', 100, 3, '', '', '', '1', '0', 'F', '0', '0', 'system:user:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1003, '用户删除', 100, 4, '', '', '', '1', '0', 'F', '0', '0', 'system:user:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1004, '用户导出', 100, 5, '', '', '', '1', '0', 'F', '0', '0', 'system:user:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1005, '用户导入', 100, 6, '', '', '', '1', '0', 'F', '0', '0', 'system:user:import', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1006, '重置密码', 100, 7, '', '', '', '1', '0', 'F', '0', '0', 'system:user:resetPwd', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1007, '角色查询', 101, 1, '', '', '', '1', '0', 'F', '0', '0', 'system:role:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1008, '角色新增', 101, 2, '', '', '', '1', '0', 'F', '0', '0', 'system:role:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1009, '角色修改', 101, 3, '', '', '', '1', '0', 'F', '0', '0', 'system:role:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1010, '角色删除', 101, 4, '', '', '', '1', '0', 'F', '0', '0', 'system:role:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1011, '角色导出', 101, 5, '', '', '', '1', '0', 'F', '0', '0', 'system:role:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1012, '菜单查询', 102, 1, '', '', '', '1', '0', 'F', '0', '0', 'system:menu:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1013, '菜单新增', 102, 2, '', '', '', '1', '0', 'F', '0', '0', 'system:menu:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1014, '菜单修改', 102, 3, '', '', '', '1', '0', 'F', '0', '0', 'system:menu:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1015, '菜单删除', 102, 4, '', '', '', '1', '0', 'F', '0', '0', 'system:menu:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1016, '部门查询', 103, 1, '', '', '', '1', '0', 'F', '0', '0', 'system:dept:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1017, '部门新增', 103, 2, '', '', '', '1', '0', 'F', '0', '0', 'system:dept:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1018, '部门修改', 103, 3, '', '', '', '1', '0', 'F', '0', '0', 'system:dept:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1019, '部门删除', 103, 4, '', '', '', '1', '0', 'F', '0', '0', 'system:dept:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1020, '岗位查询', 104, 1, '', '', '', '1', '0', 'F', '0', '0', 'system:post:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1021, '岗位新增', 104, 2, '', '', '', '1', '0', 'F', '0', '0', 'system:post:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1022, '岗位修改', 104, 3, '', '', '', '1', '0', 'F', '0', '0', 'system:post:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1023, '岗位删除', 104, 4, '', '', '', '1', '0', 'F', '0', '0', 'system:post:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1024, '岗位导出', 104, 5, '', '', '', '1', '0', 'F', '0', '0', 'system:post:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1025, '字典查询', 105, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1026, '字典新增', 105, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1027, '字典修改', 105, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1028, '字典删除', 105, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (4, '官方网站', 0, 99, 'https://gitee.com/dataprince/ruoyi-flex', NULL, '', '0', '0', 'M', '0', '0', '', 'guide', 1, 1, '2023-06-03 21:32:28', 1, '2024-01-08 15:47:36.94', '若依官网地址'), + (1029, '字典导出', 105, 5, '#', '', '', '1', '0', 'F', '0', '0', 'system:dict:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1030, '参数查询', 106, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:config:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1031, '参数新增', 106, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:config:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1032, '参数修改', 106, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:config:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1033, '参数删除', 106, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:config:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1034, '参数导出', 106, 5, '#', '', '', '1', '0', 'F', '0', '0', 'system:config:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1035, '公告查询', 107, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1036, '公告新增', 107, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1037, '公告修改', 107, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1038, '公告删除', 107, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:notice:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1039, '操作查询', 500, 1, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:operlog:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1040, '操作删除', 500, 2, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:operlog:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1041, '日志导出', 500, 3, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:operlog:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1042, '登录查询', 501, 1, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1043, '登录删除', 501, 2, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1044, '日志导出', 501, 3, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1045, '账户解锁', 501, 4, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:logininfor:unlock', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1046, '在线查询', 109, 1, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:online:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1047, '批量强退', 109, 2, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:online:batchLogout', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1048, '单条强退', 109, 3, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:online:forceLogout', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1049, '任务查询', 110, 1, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:job:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1050, '任务新增', 110, 2, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:job:add', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1051, '任务修改', 110, 3, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:job:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1052, '任务删除', 110, 4, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:job:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1053, '状态修改', 110, 5, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:job:changeStatus', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1054, '任务导出', 110, 6, '#', '', '', '1', '0', 'F', '0', '0', 'monitor:job:export', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1055, '生成查询', 116, 1, '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:query', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1056, '生成修改', 116, 2, '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:edit', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1057, '生成删除', 116, 3, '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:remove', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1058, '导入代码', 116, 4, '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:import', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1059, '预览代码', 116, 5, '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:preview', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (1060, '生成代码', 116, 6, '#', '', '', '1', '0', 'F', '0', '0', 'tool:gen:code', '#', 0, 1, '2023-06-03 21:32:29', 1, NULL, ''), + (2018, '演示模块', 0, 20, 'demo', NULL, NULL, '1', '0', 'M', '0', '0', '', 'people', 0, 1, '2023-07-04 11:08:44', 1, '2023-09-02 20:09:55', ''), + (2050, '学生信息单表(mb)', 2018, 1, 'student', 'demo/student/index', NULL, '1', '0', 'C', '0', '0', 'demo:student:list', 'component', 0, 1, '2023-07-09 12:17:40', 1, '2023-11-17 09:21:30', '学生信息单表(mb)菜单'), + (2051, '学生信息单表(mb)查询', 2050, 1, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:student:query', '#', 0, 1, '2023-07-09 12:17:40', 1, NULL, ''), + (2052, '学生信息单表(mb)新增', 2050, 2, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:student:add', '#', 0, 1, '2023-07-09 12:17:40', 1, NULL, ''), + (2053, '学生信息单表(mb)修改', 2050, 3, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:student:edit', '#', 0, 1, '2023-07-09 12:17:40', 1, NULL, ''), + (2054, '学生信息单表(mb)删除', 2050, 4, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:student:remove', '#', 0, 1, '2023-07-09 12:17:40', 1, NULL, ''), + (2055, '学生信息单表(mb)导出', 2050, 5, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:student:export', '#', 0, 1, '2023-07-09 12:17:40', 1, NULL, ''), + (2057, '产品树表(mb)查询', 2056, 1, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:product:query', '#', 0, 1, '2023-07-09 20:59:25', 1, NULL, ''), + (2058, '产品树表(mb)新增', 2056, 2, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:product:add', '#', 0, 1, '2023-07-09 20:59:25', 1, NULL, ''), + (2059, '产品树表(mb)修改', 2056, 3, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:product:edit', '#', 0, 1, '2023-07-09 20:59:25', 1, NULL, ''), + (2060, '产品树表(mb)删除', 2056, 4, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:product:remove', '#', 0, 1, '2023-07-09 20:59:25', 1, NULL, ''), + (2061, '产品树表(mb)导出', 2056, 5, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:product:export', '#', 0, 1, '2023-07-09 20:59:25', 1, NULL, ''), + (2063, '客户主表(mb)查询', 2062, 1, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:customer:query', '#', 0, 1, '2023-07-11 16:06:23', 1, NULL, ''), + (2064, '客户主表(mb)新增', 2062, 2, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:customer:add', '#', 0, 1, '2023-07-11 16:06:23', 1, NULL, ''), + (2065, '客户主表(mb)修改', 2062, 3, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:customer:edit', '#', 0, 1, '2023-07-11 16:06:23', 1, NULL, ''), + (2066, '客户主表(mb)删除', 2062, 4, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:customer:remove', '#', 0, 1, '2023-07-11 16:06:23', 1, NULL, ''), + (2067, '客户主表(mb)导出', 2062, 5, '#', '', NULL, '1', '0', 'F', '0', '0', 'demo:customer:export', '#', 0, 1, '2023-07-11 16:06:23', 1, NULL, ''), + (2072, '学生信息表查询', 2071, 1, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:student:query', '#', 0, 1, '2023-11-22 17:30:46', 1, NULL, ''), + (2073, '学生信息表新增', 2071, 2, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:student:add', '#', 0, 1, '2023-11-22 17:30:46', 1, NULL, ''), + (2062, '客户主表(mb)', 2018, 3, 'customer', 'demo/customer/index', NULL, '1', '0', 'C', '0', '0', 'demo:customer:list', '#', 0, 1, '2023-07-11 16:06:23', 1, '2023-12-19 17:18:08.527', '客户主表(mb)菜单'), + (2071, '学生信息表', 2018, 4, 'mfstudent', 'mf/student/index', NULL, '1', '0', 'C', '0', '0', 'mf:student:list', '#', 0, 1, '2023-11-22 17:30:46', 1, '2023-12-19 17:18:39.487', '学生信息表菜单'), + (2074, '学生信息表修改', 2071, 3, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:student:edit', '#', 0, 1, '2023-11-22 17:30:46', 1, NULL, ''), + (2075, '学生信息表删除', 2071, 4, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:student:remove', '#', 0, 1, '2023-11-22 17:30:46', 1, NULL, ''), + (2076, '学生信息表导出', 2071, 5, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:student:export', '#', 0, 1, '2023-11-22 17:30:46', 1, NULL, ''), + (2078, '产品树查询', 2077, 1, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:product:query', '#', 0, 1, '2023-11-23 10:53:54', 1, NULL, ''), + (2079, '产品树新增', 2077, 2, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:product:add', '#', 0, 1, '2023-11-23 10:53:54', 1, NULL, ''), + (2080, '产品树修改', 2077, 3, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:product:edit', '#', 0, 1, '2023-11-23 10:53:54', 1, NULL, ''), + (2081, '产品树删除', 2077, 4, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:product:remove', '#', 0, 1, '2023-11-23 10:53:54', 1, NULL, ''), + (2082, '产品树导出', 2077, 5, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:product:export', '#', 0, 1, '2023-11-23 10:53:54', 1, NULL, ''), + (2023121511351901, '客户主表查询', 2023121511351900, 1, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:customer:query', '#', 0, 1, '2023-12-15 11:36:19', 1, NULL, ''), + (2023121511351902, '客户主表新增', 2023121511351900, 2, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:customer:add', '#', 0, 1, '2023-12-15 11:36:19', 1, NULL, ''), + (2023121511351903, '客户主表修改', 2023121511351900, 3, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:customer:edit', '#', 0, 1, '2023-12-15 11:36:19', 1, NULL, ''), + (2023121511351904, '客户主表删除', 2023121511351900, 4, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:customer:remove', '#', 0, 1, '2023-12-15 11:36:19', 1, NULL, ''), + (2023121511351905, '客户主表导出', 2023121511351900, 5, '#', '', NULL, '1', '0', 'F', '0', '0', 'mf:customer:export', '#', 0, 1, '2023-12-15 11:36:19', 1, NULL, ''), + (2056, '产品树表(mb)', 2018, 2, 'product', 'demo/product/index', NULL, '1', '0', 'C', '0', '0', 'demo:product:list', '#', 0, 1, '2023-07-09 20:59:25', 1, '2023-12-19 17:17:55.892', '产品树表(mb)菜单'), + (2077, '产品树表', 2018, 5, 'mfproduct', 'mf/product/index', NULL, '1', '0', 'C', '0', '0', 'mf:product:list', '#', 0, 1, '2023-11-23 10:53:54', 1, '2023-12-19 17:18:48.06', '产品树菜单'), + (2023121511351900, '客户主表', 2018, 6, 'mfcustomer', 'mf/customer/index', NULL, '1', '0', 'C', '0', '0', 'mf:customer:list', '#', 0, 1, '2023-12-15 11:36:19', 1, '2023-12-19 17:18:55.855', '客户主表菜单'), + (1600, '文件查询', 118, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:query', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1601, '文件上传', 118, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:upload', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1602, '文件下载', 118, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:download', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1603, '文件删除', 118, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:oss:remove', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1620, '配置列表', 118, 5, '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:list', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1621, '配置添加', 118, 6, '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:add', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1622, '配置编辑', 118, 6, '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:edit', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (1623, '配置删除', 118, 6, '#', '', '', '1', '0', 'F', '0', '0', 'system:ossConfig:remove', '#', 0, 1, '2023-12-25 15:09:14.342224', NULL, NULL, ''), + (6, '租户管理', 0, 2, 'tenant', NULL, '', '1', '0', 'M', '0', '0', '', 'chart', 0, 1, '2023-12-27 21:16:14.281141', NULL, NULL, '租户管理目录'), + (121, '租户管理', 6, 1, 'tenant', 'system/tenant/index', '', '1', '0', 'C', '0', '0', 'system:tenant:list', 'list', 0, 1, '2023-12-27 21:16:14.281141', NULL, NULL, '租户管理菜单'), + (122, '租户套餐管理', 6, 2, 'tenantPackage', 'system/tenantPackage/index', '', '1', '0', 'C', '0', '0', 'system:tenantPackage:list', 'form', 0, 1, '2023-12-27 21:16:14.281141', NULL, NULL, '租户套餐管理菜单'), + (1606, '租户查询', 121, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:query', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1607, '租户新增', 121, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:add', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1608, '租户修改', 121, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:edit', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1609, '租户删除', 121, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:remove', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1610, '租户导出', 121, 5, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenant:export', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1611, '租户套餐查询', 122, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:query', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1612, '租户套餐新增', 122, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:add', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1613, '租户套餐修改', 122, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:edit', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1614, '租户套餐删除', 122, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:remove', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (1615, '租户套餐导出', 122, 5, '#', '', '', '1', '0', 'F', '0', '0', 'system:tenantPackage:export', '#', 0, 1, '2023-12-27 21:17:55.891828', NULL, NULL, ''), + (2, '系统监控', 0, 3, 'monitor', NULL, '', '1', '0', 'M', '0', '0', '', 'monitor', 0, 1, '2023-06-03 21:32:28', 1, '2023-12-27 21:26:58.908', '系统监控目录'), + (3, '系统工具', 0, 4, 'tool', NULL, '', '1', '0', 'M', '0', '0', '', 'tool', 0, 1, '2023-06-03 21:32:28', 1, '2023-12-27 21:27:08.258', '系统工具目录'), + (123, '客户端管理', 1, 11, 'client', 'system/client/index', '', '1', '0', 'C', '0', '0', 'system:client:list', 'international', 0, 1, '2024-01-02 17:15:04.156707', NULL, NULL, '客户端管理菜单'), + (1061, '客户端管理查询', 123, 1, '#', '', '', '1', '0', 'F', '0', '0', 'system:client:query', '#', 0, 1, '2024-01-02 17:15:04.185898', NULL, NULL, ''), + (1062, '客户端管理新增', 123, 2, '#', '', '', '1', '0', 'F', '0', '0', 'system:client:add', '#', 0, 1, '2024-01-02 17:15:04.211096', NULL, NULL, ''), + (1063, '客户端管理修改', 123, 3, '#', '', '', '1', '0', 'F', '0', '0', 'system:client:edit', '#', 0, 1, '2024-01-02 17:15:04.237723', NULL, NULL, ''), + (1064, '客户端管理删除', 123, 4, '#', '', '', '1', '0', 'F', '0', '0', 'system:client:remove', '#', 0, 1, '2024-01-02 17:15:04.264422', NULL, NULL, ''), + (1065, '客户端管理导出', 123, 5, '#', '', '', '1', '0', 'F', '0', '0', 'system:client:export', '#', 0, 1, '2024-01-02 17:15:04.292592', NULL, NULL, ''); + +drop table if exists sys_notice; +create table if not exists sys_notice +( + notice_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + notice_title varchar(50) not null, + notice_type char not null, + notice_content text, + status char default '0'::bpchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(255) default null::varchar, + constraint sys_notice_pk primary key (notice_id) +); + +comment on table sys_notice is '通知公告表'; +comment on column sys_notice.notice_id is '公告ID'; +COMMENT ON COLUMN "sys_notice"."tenant_id" IS '租户编号'; +comment on column sys_notice.notice_title is '公告标题'; +comment on column sys_notice.notice_type is '公告类型(1通知 2公告)'; +comment on column sys_notice.notice_content is '公告内容'; +comment on column sys_notice.status is '公告状态(0正常 1关闭)'; +COMMENT ON COLUMN "sys_notice"."version" IS '乐观锁'; +comment on column sys_notice.create_by is '创建者'; +comment on column sys_notice.create_time is '创建时间'; +comment on column sys_notice.update_by is '更新者'; +comment on column sys_notice.update_time is '更新时间'; +comment on column sys_notice.remark is '备注'; + +drop table if exists sys_oper_log; +create table if not exists sys_oper_log +( + oper_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + title varchar(50) default ''::varchar, + business_type INTEGER default 0, + method varchar(100) default ''::varchar, + request_method varchar(10) default ''::varchar, + operator_type INTEGER default 0, + oper_name varchar(50) default ''::varchar, + dept_name varchar(50) default ''::varchar, + oper_url varchar(255) default ''::varchar, + oper_ip varchar(128) default ''::varchar, + oper_location varchar(255) default ''::varchar, + oper_param varchar(2000) default ''::varchar, + json_result varchar(2000) default ''::varchar, + status INTEGER default 0, + error_msg varchar(2000) default ''::varchar, + oper_time timestamp, + cost_time bigint default 0, + constraint sys_oper_log_pk primary key (oper_id) +); + +create index idx_sys_oper_log_bt ON sys_oper_log (business_type); +create index idx_sys_oper_log_s ON sys_oper_log (status); +create index idx_sys_oper_log_ot ON sys_oper_log (oper_time); + +comment on table sys_oper_log is '操作日志记录'; +comment on column sys_oper_log.oper_id is '日志主键'; +COMMENT ON COLUMN "sys_oper_log"."tenant_id" IS '租户编号'; +comment on column sys_oper_log.title is '模块标题'; +comment on column sys_oper_log.business_type is '业务类型(0其它 1新增 2修改 3删除)'; +comment on column sys_oper_log.method is '方法名称'; +comment on column sys_oper_log.request_method is '请求方式'; +comment on column sys_oper_log.operator_type is '操作类别(0其它 1后台用户 2手机端用户)'; +comment on column sys_oper_log.oper_name is '操作人员'; +comment on column sys_oper_log.dept_name is '部门名称'; +comment on column sys_oper_log.oper_url is '请求URL'; +comment on column sys_oper_log.oper_ip is '主机地址'; +comment on column sys_oper_log.oper_location is '操作地点'; +comment on column sys_oper_log.oper_param is '请求参数'; +comment on column sys_oper_log.json_result is '返回参数'; +comment on column sys_oper_log.status is '操作状态(0正常 1异常)'; +comment on column sys_oper_log.error_msg is '错误消息'; +comment on column sys_oper_log.oper_time is '操作时间'; +comment on column sys_oper_log.cost_time is '消耗时间'; + +drop table if exists sys_oss; +create table if not exists sys_oss +( + oss_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + file_name varchar(255) default ''::varchar not null, + original_name varchar(255) default ''::varchar not null, + file_suffix varchar(10) default ''::varchar not null, + url varchar(500) default ''::varchar not null, + service varchar(20) default 'minio'::varchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + constraint sys_oss_pk primary key (oss_id) +); + +comment on table sys_oss is 'OSS对象存储表'; +comment on column sys_oss.oss_id is '对象存储主键'; +COMMENT ON COLUMN "sys_oss"."tenant_id" IS '租户编码'; +comment on column sys_oss.file_name is '文件名'; +comment on column sys_oss.original_name is '原名'; +comment on column sys_oss.file_suffix is '文件后缀名'; +comment on column sys_oss.url is 'URL地址'; +comment on column sys_oss.service is '服务商'; +COMMENT ON COLUMN "sys_oss"."version" IS '乐观锁'; +comment on column sys_oss.create_by is '上传人'; +comment on column sys_oss.create_time is '创建时间'; +comment on column sys_oss.update_by is '更新者'; +comment on column sys_oss.update_time is '更新时间'; + +drop table if exists sys_oss_config; +create table if not exists sys_oss_config +( + oss_config_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + config_key varchar(20) default ''::varchar not null, + access_key varchar(255) default ''::varchar, + secret_key varchar(255) default ''::varchar, + bucket_name varchar(255) default ''::varchar, + prefix varchar(255) default ''::varchar, + endpoint varchar(255) default ''::varchar, + domain varchar(255) default ''::varchar, + is_https char default 'N'::bpchar, + region varchar(255) default ''::varchar, + access_policy char(1) default '1'::bpchar not null, + status char default '1'::bpchar, + ext1 varchar(255) default ''::varchar, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default ''::varchar, + constraint sys_oss_config_pk primary key (oss_config_id) +); + +comment on table sys_oss_config is '对象存储配置表'; +comment on column sys_oss_config.oss_config_id is '主建'; +COMMENT ON COLUMN "sys_oss_config"."tenant_id" IS '租户编码'; +comment on column sys_oss_config.config_key is '配置key'; +comment on column sys_oss_config.access_key is 'accessKey'; +comment on column sys_oss_config.secret_key is '秘钥'; +comment on column sys_oss_config.bucket_name is '桶名称'; +comment on column sys_oss_config.prefix is '前缀'; +comment on column sys_oss_config.endpoint is '访问站点'; +comment on column sys_oss_config.domain is '自定义域名'; +comment on column sys_oss_config.is_https is '是否https(Y=是,N=否)'; +comment on column sys_oss_config.region is '域'; +comment on column sys_oss_config.access_policy is '桶权限类型(0=private 1=public 2=custom)'; +comment on column sys_oss_config.status is '是否默认(0=是,1=否)'; +comment on column sys_oss_config.ext1 is '扩展字段'; +COMMENT ON COLUMN "sys_oss_config"."version" IS '乐观锁'; +comment on column sys_oss_config.create_by is '创建者'; +comment on column sys_oss_config.create_time is '创建时间'; +comment on column sys_oss_config.update_by is '更新者'; +comment on column sys_oss_config.update_time is '更新时间'; +comment on column sys_oss_config.remark is '备注'; + +INSERT INTO sys_oss_config VALUES + (1,0, 'minio', 'ruoyi-flex', 'ruoyi-flex@369', 'ruoyi-flex', '', '127.0.0.1:9000', '', 'N', '', '1', '0', '', 0,1, '2023-11-30 11:54:13', 1, '2023-12-03 09:07:42', NULL), + (2,0, 'qiniu', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-flex', '', 's3-cn-north-1.qiniucs.com', '', 'N', '', '1', '1', '', 0,1, '2023-11-30 11:54:13', 1, '2023-12-01 14:25:43', NULL), + (3,0, 'aliyun', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-flex', '', 'oss-cn-beijing.aliyuncs.com', '', 'N', '', '1', '1', '', 0,1, '2023-11-30 11:54:13', 1, '2023-12-01 14:25:48', NULL), + (4,0, 'qcloud', 'XXXXXXXXXXXXXXX', 'XXXXXXXXXXXXXXX', 'ruoyi-flex', '', 'cos.ap-beijing.myqcloud.com', '', 'N', '', '1', '1', '', 0,1, '2023-11-30 11:54:13', 1, '2023-12-01 14:26:02', NULL); + +drop table if exists sys_post; +create table if not exists sys_post +( + post_id bigint NOT NULL, + "tenant_id" BIGINT NOT NULL DEFAULT '0', + post_code varchar(64) not null, + post_name varchar(50) not null, + post_sort INTEGER not null, + status char not null, + "version" INTEGER NULL DEFAULT 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint "sys_post_pk" primary key (post_id) +); + +comment on table sys_post is '岗位信息表'; +comment on column sys_post.post_id is '岗位ID'; +COMMENT ON COLUMN "sys_post"."tenant_id" IS '租户编号'; +comment on column sys_post.post_code is '岗位编码'; +comment on column sys_post.post_name is '岗位名称'; +comment on column sys_post.post_sort is '显示顺序'; +comment on column sys_post.status is '状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_post"."version" IS '乐观锁'; +comment on column sys_post.create_by is '创建者'; +comment on column sys_post.create_time is '创建时间'; +comment on column sys_post.update_by is '更新者'; +comment on column sys_post.update_time is '更新时间'; +comment on column sys_post.remark is '备注'; + +INSERT INTO sys_post VALUES + (1,0, 'ceo', '董事长', 1, '0',0, 1, '2023-06-03 21:32:28', 1, '2023-09-02 15:43:55', ''), + (2,0, 'se', '项目经理', 2, '0',0, 1, '2023-06-03 21:32:28', 1, NULL, ''), + (3,0, 'hr', '人力资源', 3, '0',0, 1, '2023-06-03 21:32:28', 1, NULL, ''), + (4,0, 'users', '普通员工', 4, '0', 0, 1, '2023-06-03 21:32:28', 1, '2023-07-13 21:30:24', ''), + (5,0, 'deptLeader', '部门管理岗', 5, '0',0, 1, '2023-10-01 10:33:39', 1, '2023-10-01 10:33:39', '部门负责人岗位'); + +drop table if exists sys_role; +create table if not exists sys_role +( + role_id bigint NOT NULL, + tenant_id bigint default 0, + role_name varchar(30) not null, + role_key varchar(100) not null, + role_sort INTEGER not null, + data_scope char default '1'::bpchar, + menu_check_strictly bool default true, + dept_check_strictly bool default true, + status char not null, + "version" INTEGER NULL DEFAULT 0, + del_flag smallint default 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint "sys_role_pk" primary key (role_id) +); + +comment on table sys_role is '角色信息表'; +comment on column sys_role.role_id is '角色ID'; +COMMENT ON COLUMN sys_role.tenant_id IS '租户编号'; +comment on column sys_role.role_name is '角色名称'; +comment on column sys_role.role_key is '角色权限字符串'; +comment on column sys_role.role_sort is '显示顺序'; +comment on column sys_role.data_scope is '数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)'; +comment on column sys_role.menu_check_strictly is '菜单树选择项是否关联显示'; +comment on column sys_role.dept_check_strictly is '部门树选择项是否关联显示'; +comment on column sys_role.status is '角色状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_role"."version" IS '乐观锁'; +comment on column sys_role.del_flag is '删除标志(0代表存在 1代表删除)'; +comment on column sys_role.create_by is '创建者'; +comment on column sys_role.create_time is '创建时间'; +comment on column sys_role.update_by is '更新者'; +comment on column sys_role.update_time is '更新时间'; +comment on column sys_role.remark is '备注'; + +INSERT INTO sys_role VALUES + (1,0, '超级管理员角色', 'admin', 1, '1', '1', '1', '0', 0,0, 1, '2023-06-03 21:32:28', 1, NULL, '超级管理员'); + +drop table if exists sys_role_dept; +create table if not exists sys_role_dept +( + role_id bigint not null, + dept_id bigint not null, + constraint sys_role_dept_pk primary key (role_id, dept_id) +); + +comment on table sys_role_dept is '角色和部门关联表'; +comment on column sys_role_dept.role_id is '角色ID'; +comment on column sys_role_dept.dept_id is '部门ID'; + +drop table if exists sys_role_menu; +create table if not exists sys_role_menu +( + role_id bigint not null, + menu_id bigint not null, + constraint sys_role_menu_pk primary key (role_id, menu_id) +); + +comment on table sys_role_menu is '角色和菜单关联表'; +comment on column sys_role_menu.role_id is '角色ID'; +comment on column sys_role_menu.menu_id is '菜单ID'; + +-- 租户套餐表 +drop table if exists sys_tenant_package; +CREATE TABLE "sys_tenant_package" ( + "package_id" BIGINT NOT NULL, + "package_name" VARCHAR(20) NULL DEFAULT '', + "menu_ids" VARCHAR(3000) NULL DEFAULT '', + "remark" VARCHAR(200) NULL DEFAULT '', + "menu_check_strictly" BOOLEAN NULL DEFAULT true, + "status" CHAR(1) NULL DEFAULT '0', + "version" INTEGER NULL DEFAULT 0, + "del_flag" SMALLINT NULL DEFAULT 0, + "create_by" BIGINT NULL DEFAULT NULL, + "create_time" TIMESTAMP NULL DEFAULT NULL, + "update_by" BIGINT NULL DEFAULT NULL, + "update_time" TIMESTAMP NULL DEFAULT NULL, + PRIMARY KEY ("package_id") +); +comment on table sys_tenant_package is '租户套餐表'; +COMMENT ON COLUMN "sys_tenant_package"."package_id" IS '租户套餐id'; +COMMENT ON COLUMN "sys_tenant_package"."package_name" IS '套餐名称'; +COMMENT ON COLUMN "sys_tenant_package"."menu_ids" IS '关联菜单id'; +COMMENT ON COLUMN "sys_tenant_package"."remark" IS '备注'; +COMMENT ON COLUMN "sys_tenant_package"."menu_check_strictly" IS ''; +COMMENT ON COLUMN "sys_tenant_package"."status" IS '状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_tenant_package"."version" IS '乐观锁'; +COMMENT ON COLUMN "sys_tenant_package"."del_flag" IS '删除标志(0代表存在 1代表删除)'; +COMMENT ON COLUMN "sys_tenant_package"."create_by" IS '创建者'; +COMMENT ON COLUMN "sys_tenant_package"."create_time" IS '创建时间'; +COMMENT ON COLUMN "sys_tenant_package"."update_by" IS '更新者'; +COMMENT ON COLUMN "sys_tenant_package"."update_time" IS '更新时间'; + +drop table if exists sys_tenant; +create table if not exists sys_tenant +( + tenant_id bigint NOT NULL, + contact_user_name varchar(20) default null::varchar, + contact_phone varchar(20) default null::varchar, + company_name varchar(50) default null::varchar, + license_number varchar(30) default null::varchar, + address varchar(200) default null::varchar, + intro varchar(200) default null::varchar, + domain varchar(200) default null::varchar, + remark varchar(200) default null::varchar, + package_id bigint, + expire_time timestamp, + account_count INTEGER default -1, + status char default '0'::bpchar, + "version" INTEGER NULL DEFAULT 0, + del_flag smallint default 0, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + constraint "pk_sys_tenant" primary key (tenant_id) +); + +comment on table sys_tenant is '租户表'; +COMMENT ON COLUMN "sys_tenant"."tenant_id" IS '租户编号'; +COMMENT ON COLUMN "sys_tenant"."contact_user_name" IS '联系人'; +COMMENT ON COLUMN "sys_tenant"."contact_phone" IS '联系电话'; +COMMENT ON COLUMN "sys_tenant"."company_name" IS '企业名称'; +COMMENT ON COLUMN "sys_tenant"."license_number" IS '统一社会信用代码'; +COMMENT ON COLUMN "sys_tenant"."address" IS '地址'; +COMMENT ON COLUMN "sys_tenant"."intro" IS '企业简介'; +COMMENT ON COLUMN "sys_tenant"."domain" IS '域名'; +COMMENT ON COLUMN "sys_tenant"."remark" IS '备注'; +COMMENT ON COLUMN "sys_tenant"."package_id" IS '租户套餐编号'; +COMMENT ON COLUMN "sys_tenant"."expire_time" IS '过期时间'; +COMMENT ON COLUMN "sys_tenant"."account_count" IS '用户数量(-1不限制)'; +COMMENT ON COLUMN "sys_tenant"."status" IS '租户状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_tenant"."version" IS '乐观锁'; +COMMENT ON COLUMN "sys_tenant"."del_flag" IS '删除标志(0代表存在 1代表删除)'; +COMMENT ON COLUMN "sys_tenant"."create_by" IS '创建者'; +COMMENT ON COLUMN "sys_tenant"."create_time" IS '创建时间'; +COMMENT ON COLUMN "sys_tenant"."update_by" IS '更新者'; +COMMENT ON COLUMN "sys_tenant"."update_time" IS '更新时间'; + +insert into sys_tenant values +(0, '联系人', '18888888888', 'Ruoyi-Flex公司', NULL, NULL, 'RuoYi-Flex多租户通用后台管理管理系统', NULL, NULL, NULL, NULL, -1, '0', 0,0, 1, '2023-08-13 08:08:08', NULL, NULL); + + + +drop table if exists sys_user; +create table if not exists sys_user +( + user_id bigint NOT NULL, + tenant_id bigint, + dept_id bigint, + user_name varchar(30) not null, + nick_name varchar(30) not null, + user_type varchar(10) default 'sys_user'::varchar, + email varchar(50) not null default ''::varchar, + phonenumber varchar(11) default ''::varchar, + gender char default '0'::bpchar, + avatar bigint, + password varchar(100) default ''::varchar, + status char default '0'::bpchar, + "version" INTEGER NULL DEFAULT 0, + del_flag smallint default 0, + login_ip varchar(128) default ''::varchar, + login_date timestamp, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp, + remark varchar(500) default null::varchar, + constraint "sys_user_pk" primary key (user_id) +); +DROP INDEX if exists sys_user_unqindex_tenant_username; +CREATE UNIQUE INDEX sys_user_unqindex_tenant_username ON sys_user(tenant_id, user_name); + +comment on table sys_user is '用户信息表'; +comment on column sys_user.user_id is '用户ID'; +comment on column sys_user.tenant_id is '租户编号'; +comment on column sys_user.dept_id is '部门ID'; +comment on column sys_user.user_name is '用户账号'; +comment on column sys_user.nick_name is '用户昵称'; +comment on column sys_user.user_type is '用户类型(sys_user系统用户)'; +comment on column sys_user.email is '用户邮箱'; +comment on column sys_user.phonenumber is '手机号码'; +comment on column sys_user.gender is '用户性别(0男 1女 2未知)'; +comment on column sys_user.avatar is '头像地址'; +comment on column sys_user.password is '密码'; +comment on column sys_user.status is '帐号状态(0正常 1停用)'; +COMMENT ON COLUMN "sys_user"."version" IS '乐观锁'; +comment on column sys_user.del_flag is '删除标志(0代表存在 1代表删除)'; +comment on column sys_user.login_ip is '最后登陆IP'; +comment on column sys_user.login_date is '最后登陆时间'; +comment on column sys_user.create_by is '创建者'; +comment on column sys_user.create_time is '创建时间'; +comment on column sys_user.update_by is '更新者'; +comment on column sys_user.update_time is '更新时间'; +comment on column sys_user.remark is '备注'; + +INSERT INTO sys_user VALUES + (1, 0, 1, 'superadmin', '超级管理员', 'sys_user', 'ry@163.com', '15888888888', '1', NULL, '$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2', '0', 0,0, '0:0:0:0:0:0:0:1', '2023-12-18 10:57:01', 1, '2023-06-03 21:32:28', 1, '2023-12-18 10:57:01', '管理员'); + + +drop table if exists sys_user_post; +create table if not exists sys_user_post +( + user_id bigint not null, + post_id bigint not null, + constraint sys_user_post_pk primary key (user_id, post_id) +); + +comment on table sys_user_post is '用户与岗位关联表'; +comment on column sys_user_post.user_id is '用户ID'; +comment on column sys_user_post.post_id is '岗位ID'; + +drop table if exists sys_user_role; +create table if not exists sys_user_role +( + user_id bigint not null, + role_id bigint not null, + constraint sys_user_role_pk primary key (user_id, role_id) +); + +comment on table sys_user_role is '用户和角色关联表'; +comment on column sys_user_role.user_id is '用户ID'; +comment on column sys_user_role.role_id is '角色ID'; + +-- 字符串自动转时间 避免框架时间查询报错问题 +create or replace function cast_varchar_to_timestamp(varchar) returns timestamptz as $$ +select to_timestamp($1, 'yyyy-mm-dd hh24:mi:ss'); +$$ language sql strict ; + +create cast (varchar as timestamptz) with function cast_varchar_to_timestamp as IMPLICIT; + +-- postgresql创建与mysql等效的的find_in_set函数 +CREATE OR REPLACE FUNCTION find_in_set( + value anyelement, + string_list text) + RETURNS integer + LANGUAGE 'plpgsql' + COST 100 + VOLATILE PARALLEL UNSAFE + AS $BODY$ + DECLARE +position INTEGER; +BEGIN + IF string_list = '' THEN + RETURN 0; +ELSE + position := array_position(string_to_array(string_list, ','), value::TEXT); +RETURN position; +END IF; +END; +$BODY$;