1、完善项目
2、完善合同 3、完善费用项 4、司机管理对接OCR 5、完善运输计划 6、完善临时额度
This commit is contained in:
@@ -6536,9 +6536,9 @@ CREATE INDEX "IDX_FEE_ITEM_STATUS" ON "BLADEX"."BLADE_FEE_ITEM" ("STATUS");
|
||||
-- ----------------------------
|
||||
-- Records of BLADE_MENU for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000070, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000071, 1980000000000000070, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000072, 1980000000000000070, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000073, 1980000000000000070, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000074, 1980000000000000070, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000075, 1980000000000000070, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (2075449200000000001, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000071, 2075449200000000001, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000072, 2075449200000000001, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000073, 2075449200000000001, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000074, 2075449200000000001, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADEX"."BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000075, 2075449200000000001, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
|
||||
@@ -2562,6 +2562,7 @@ CREATE INDEX "idx_customer_type_status" ON "blade_customer_type" ("status");
|
||||
DROP TABLE IF EXISTS "blade_fee_item";
|
||||
CREATE TABLE "blade_fee_item" (
|
||||
"id" int8 NOT NULL,
|
||||
"fee_category" varchar(50) NOT NULL,
|
||||
"name" varchar(50) NOT NULL,
|
||||
"english_name" varchar(100),
|
||||
"create_user" int8,
|
||||
@@ -2574,15 +2575,19 @@ CREATE TABLE "blade_fee_item" (
|
||||
CONSTRAINT "blade_fee_item_pkey" PRIMARY KEY ("id"),
|
||||
CONSTRAINT "uk_fee_item_name" UNIQUE ("name")
|
||||
);
|
||||
CREATE INDEX "idx_fee_item_category" ON "blade_fee_item" ("fee_category");
|
||||
CREATE INDEX "idx_fee_item_status" ON "blade_fee_item" ("status");
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of blade_menu for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO "blade_menu" ("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "component", "remark", "is_deleted") VALUES
|
||||
(1980000000000000070, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0),
|
||||
(1980000000000000071, 1980000000000000070, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0),
|
||||
(1980000000000000072, 1980000000000000070, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000073, 1980000000000000070, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000074, 1980000000000000070, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000075, 1980000000000000070, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
(2075449200000000001, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0),
|
||||
(1980000000000000071, 2075449200000000001, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0),
|
||||
(1980000000000000072, 2075449200000000001, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000073, 2075449200000000001, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000074, 2075449200000000001, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000075, 2075449200000000001, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000076, 2075449200000000001, 'fee_item_import', '批量导入', 'import', '/api/blade-system/fee-item/import-fee-item', 'upload', 6, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000077, 2075449200000000001, 'fee_item_template', '模板下载', 'template', '/api/blade-system/fee-item/export-template', 'download', 7, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000078, 2075449200000000001, 'fee_item_export', '批量导出', 'export', '/api/blade-system/fee-item/export-fee-item', 'download', 8, 2, 2, 1, '', NULL, 0);
|
||||
|
||||
@@ -1697,8 +1697,9 @@ INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `s
|
||||
DROP TABLE IF EXISTS `blade_fee_item`;
|
||||
CREATE TABLE `blade_fee_item` (
|
||||
`id` bigint NOT NULL COMMENT '主键',
|
||||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '中文名称',
|
||||
`english_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '英文名称',
|
||||
`fee_category` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '费用类型',
|
||||
`name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '费用项',
|
||||
`english_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '费用项代码',
|
||||
`create_user` bigint NULL DEFAULT NULL COMMENT '创建人',
|
||||
`create_dept` bigint NULL DEFAULT NULL COMMENT '创建部门',
|
||||
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
||||
@@ -1708,6 +1709,7 @@ CREATE TABLE `blade_fee_item` (
|
||||
`is_deleted` int NULL DEFAULT 0 COMMENT '是否已删除',
|
||||
PRIMARY KEY (`id`) USING BTREE,
|
||||
UNIQUE INDEX `uk_fee_item_name`(`name`) USING BTREE,
|
||||
INDEX `idx_fee_item_category`(`fee_category`) USING BTREE,
|
||||
INDEX `idx_fee_item_status`(`status`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '费用项';
|
||||
|
||||
@@ -1715,11 +1717,14 @@ CREATE TABLE `blade_fee_item` (
|
||||
-- Records of blade_menu for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES
|
||||
(1980000000000000070, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0),
|
||||
(1980000000000000071, 1980000000000000070, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0),
|
||||
(1980000000000000072, 1980000000000000070, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000073, 1980000000000000070, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000074, 1980000000000000070, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000075, 1980000000000000070, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
(2075449200000000001, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0),
|
||||
(1980000000000000071, 2075449200000000001, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0),
|
||||
(1980000000000000072, 2075449200000000001, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000073, 2075449200000000001, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000074, 2075449200000000001, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000075, 2075449200000000001, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000076, 2075449200000000001, 'fee_item_import', '批量导入', 'import', '/api/blade-system/fee-item/import-fee-item', 'upload', 6, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000077, 2075449200000000001, 'fee_item_template', '模板下载', 'template', '/api/blade-system/fee-item/export-template', 'download', 7, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000078, 2075449200000000001, 'fee_item_export', '批量导出', 'export', '/api/blade-system/fee-item/export-fee-item', 'download', 8, 2, 2, 1, '', NULL, 0);
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
|
||||
@@ -6770,9 +6770,9 @@ CREATE INDEX "IDX_FEE_ITEM_STATUS" ON "BLADE_FEE_ITEM" ("STATUS");
|
||||
-- ----------------------------
|
||||
-- Records of BLADE_MENU for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000070, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000071, 1980000000000000070, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000072, 1980000000000000070, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000073, 1980000000000000070, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000074, 1980000000000000070, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000075, 1980000000000000070, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (2075449200000000001, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000071, 2075449200000000001, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000072, 2075449200000000001, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000073, 2075449200000000001, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000074, 2075449200000000001, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000075, 2075449200000000001, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
|
||||
@@ -2562,6 +2562,7 @@ CREATE INDEX "idx_customer_type_status" ON "blade_customer_type" ("status");
|
||||
DROP TABLE IF EXISTS "blade_fee_item";
|
||||
CREATE TABLE "blade_fee_item" (
|
||||
"id" int8 NOT NULL,
|
||||
"fee_category" varchar(50) NOT NULL,
|
||||
"name" varchar(50) NOT NULL,
|
||||
"english_name" varchar(100),
|
||||
"create_user" int8,
|
||||
@@ -2574,15 +2575,19 @@ CREATE TABLE "blade_fee_item" (
|
||||
CONSTRAINT "blade_fee_item_pkey" PRIMARY KEY ("id"),
|
||||
CONSTRAINT "uk_fee_item_name" UNIQUE ("name")
|
||||
);
|
||||
CREATE INDEX "idx_fee_item_category" ON "blade_fee_item" ("fee_category");
|
||||
CREATE INDEX "idx_fee_item_status" ON "blade_fee_item" ("status");
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of blade_menu for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO "blade_menu" ("id", "parent_id", "code", "name", "alias", "path", "source", "sort", "category", "action", "is_open", "component", "remark", "is_deleted") VALUES
|
||||
(1980000000000000070, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0),
|
||||
(1980000000000000071, 1980000000000000070, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0),
|
||||
(1980000000000000072, 1980000000000000070, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000073, 1980000000000000070, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000074, 1980000000000000070, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000075, 1980000000000000070, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
(2075449200000000001, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0),
|
||||
(1980000000000000071, 2075449200000000001, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0),
|
||||
(1980000000000000072, 2075449200000000001, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000073, 2075449200000000001, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000074, 2075449200000000001, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000075, 2075449200000000001, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000076, 2075449200000000001, 'fee_item_import', '批量导入', 'import', '/api/blade-system/fee-item/import-fee-item', 'upload', 6, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000077, 2075449200000000001, 'fee_item_template', '模板下载', 'template', '/api/blade-system/fee-item/export-template', 'download', 7, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000078, 2075449200000000001, 'fee_item_export', '批量导出', 'export', '/api/blade-system/fee-item/export-fee-item', 'download', 8, 2, 2, 1, '', NULL, 0);
|
||||
|
||||
@@ -7727,6 +7727,7 @@ IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[bl
|
||||
GO
|
||||
CREATE TABLE [dbo].[blade_fee_item] (
|
||||
[id] bigint NOT NULL,
|
||||
[fee_category] nvarchar(50) NOT NULL,
|
||||
[name] nvarchar(50) NOT NULL,
|
||||
[english_name] nvarchar(100) NULL,
|
||||
[create_user] bigint NULL,
|
||||
@@ -7740,11 +7741,13 @@ CREATE TABLE [dbo].[blade_fee_item] (
|
||||
CONSTRAINT [uk_fee_item_name] UNIQUE ([name])
|
||||
)
|
||||
GO
|
||||
CREATE INDEX [idx_fee_item_category] ON [dbo].[blade_fee_item] ([fee_category])
|
||||
GO
|
||||
CREATE INDEX [idx_fee_item_status] ON [dbo].[blade_fee_item] ([status])
|
||||
GO
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of blade_menu for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO [dbo].[blade_menu] ([id], [parent_id], [code], [name], [alias], [path], [source], [sort], [category], [action], [is_open], [component], [remark], [is_deleted]) VALUES (N'1980000000000000070', N'1164733399668962201', N'fee_item', N'费用项', N'menu', N'/base/fee-item', N'iconfont icon-shoucang', N'7', N'1', N'0', N'1', N'', NULL, N'0'), (N'1980000000000000071', N'1980000000000000070', N'fee_item_add', N'新增', N'add', N'/base/fee-item/add', N'plus', N'1', N'2', N'1', N'1', N'', NULL, N'0'), (N'1980000000000000072', N'1980000000000000070', N'fee_item_edit', N'修改', N'edit', N'/base/fee-item/edit', N'form', N'2', N'2', N'2', N'1', N'', NULL, N'0'), (N'1980000000000000073', N'1980000000000000070', N'fee_item_delete', N'删除', N'delete', N'/api/blade-system/fee-item/remove', N'delete', N'3', N'2', N'3', N'1', N'', NULL, N'0'), (N'1980000000000000074', N'1980000000000000070', N'fee_item_view', N'查看', N'view', N'/base/fee-item/view', N'file-text', N'4', N'2', N'2', N'1', N'', NULL, N'0'), (N'1980000000000000075', N'1980000000000000070', N'fee_item_status', N'启停', N'status', N'/api/blade-system/fee-item/status', N'key', N'5', N'2', N'2', N'1', N'', NULL, N'0')
|
||||
INSERT INTO [dbo].[blade_menu] ([id], [parent_id], [code], [name], [alias], [path], [source], [sort], [category], [action], [is_open], [component], [remark], [is_deleted]) VALUES (N'2075449200000000001', N'1164733399668962201', N'fee_item', N'费用项', N'menu', N'/base/fee-item', N'iconfont icon-shoucang', N'7', N'1', N'0', N'1', N'', NULL, N'0'), (N'1980000000000000071', N'2075449200000000001', N'fee_item_add', N'新增', N'add', N'/base/fee-item/add', N'plus', N'1', N'2', N'1', N'1', N'', NULL, N'0'), (N'1980000000000000072', N'2075449200000000001', N'fee_item_edit', N'修改', N'edit', N'/base/fee-item/edit', N'form', N'2', N'2', N'2', N'1', N'', NULL, N'0'), (N'1980000000000000073', N'2075449200000000001', N'fee_item_delete', N'删除', N'delete', N'/api/blade-system/fee-item/remove', N'delete', N'3', N'2', N'3', N'1', N'', NULL, N'0'), (N'1980000000000000074', N'2075449200000000001', N'fee_item_view', N'查看', N'view', N'/base/fee-item/view', N'file-text', N'4', N'2', N'2', N'1', N'', NULL, N'0'), (N'1980000000000000075', N'2075449200000000001', N'fee_item_status', N'启停', N'status', N'/api/blade-system/fee-item/status', N'key', N'5', N'2', N'2', N'1', N'', NULL, N'0'), (N'1980000000000000076', N'2075449200000000001', N'fee_item_import', N'批量导入', N'import', N'/api/blade-system/fee-item/import-fee-item', N'upload', N'6', N'2', N'3', N'1', N'', NULL, N'0'), (N'1980000000000000077', N'2075449200000000001', N'fee_item_template', N'模板下载', N'template', N'/api/blade-system/fee-item/export-template', N'download', N'7', N'2', N'2', N'1', N'', NULL, N'0'), (N'1980000000000000078', N'2075449200000000001', N'fee_item_export', N'批量导出', N'export', N'/api/blade-system/fee-item/export-fee-item', N'download', N'8', N'2', N'2', N'1', N'', NULL, N'0')
|
||||
GO
|
||||
|
||||
@@ -28660,9 +28660,9 @@ CREATE INDEX "IDX_FEE_ITEM_STATUS" ON "BLADE_FEE_ITEM" ("STATUS");
|
||||
-- ----------------------------
|
||||
-- Records of BLADE_MENU for fee item
|
||||
-- ----------------------------
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000070, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000071, 1980000000000000070, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000072, 1980000000000000070, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000073, 1980000000000000070, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000074, 1980000000000000070, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000075, 1980000000000000070, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (2075449200000000001, 1164733399668962201, 'fee_item', '费用项', 'menu', '/base/fee-item', 'iconfont icon-shoucang', 7, 1, 0, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000071, 2075449200000000001, 'fee_item_add', '新增', 'add', '/base/fee-item/add', 'plus', 1, 2, 1, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000072, 2075449200000000001, 'fee_item_edit', '修改', 'edit', '/base/fee-item/edit', 'form', 2, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000073, 2075449200000000001, 'fee_item_delete', '删除', 'delete', '/api/blade-system/fee-item/remove', 'delete', 3, 2, 3, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000074, 2075449200000000001, 'fee_item_view', '查看', 'view', '/base/fee-item/view', 'file-text', 4, 2, 2, 1, '', NULL, 0);
|
||||
INSERT INTO "BLADE_MENU" ("ID","PARENT_ID","CODE","NAME","ALIAS","PATH","SOURCE","SORT","CATEGORY","ACTION","IS_OPEN","COMPONENT","REMARK","IS_DELETED") VALUES (1980000000000000075, 2075449200000000001, 'fee_item_status', '启停', 'status', '/api/blade-system/fee-item/status', 'key', 5, 2, 2, 1, '', NULL, 0);
|
||||
|
||||
@@ -28,3 +28,6 @@ INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `s
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000003, 2075449200000000001, 'fee_item_edit', '编辑', 'fee_item_edit', '', '', 1, 2, 0, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000004, 2075449200000000001, 'fee_item_status', '修改状态', 'fee_item_status', '', '', 1, 2, 0, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000005, 2075449200000000001, 'fee_item_add', '新增', 'fee_item_add', '', '', 1, 2, 0, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000006, 2075449200000000001, 'fee_item_import', '批量导入', 'fee_item_import', '/api/blade-system/fee-item/import-fee-item', 'upload', 5, 2, 3, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000007, 2075449200000000001, 'fee_item_template', '下载模板', 'fee_item_template', '/api/blade-system/fee-item/export-template', 'download', 6, 2, 2, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000008, 2075449200000000001, 'fee_item_export', '批量导出', 'fee_item_export', '/api/blade-system/fee-item/export-fee-item', 'download', 7, 2, 2, 1, NULL, '', 0);
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
-- 费用项批量导入、模板下载、批量导出菜单权限
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES
|
||||
(1980000000000000076, 2075449200000000001, 'fee_item_import', '批量导入', 'import', '/api/blade-system/fee-item/import-fee-item', 'upload', 6, 2, 3, 1, '', NULL, 0),
|
||||
(1980000000000000077, 2075449200000000001, 'fee_item_template', '模板下载', 'template', '/api/blade-system/fee-item/export-template', 'download', 7, 2, 2, 1, '', NULL, 0),
|
||||
(1980000000000000078, 2075449200000000001, 'fee_item_export', '批量导出', 'export', '/api/blade-system/fee-item/export-fee-item', 'download', 8, 2, 2, 1, '', NULL, 0)
|
||||
ON DUPLICATE KEY UPDATE
|
||||
`parent_id` = VALUES(`parent_id`),
|
||||
`code` = VALUES(`code`),
|
||||
`name` = VALUES(`name`),
|
||||
`alias` = VALUES(`alias`),
|
||||
`path` = VALUES(`path`),
|
||||
`source` = VALUES(`source`),
|
||||
`sort` = VALUES(`sort`),
|
||||
`category` = VALUES(`category`),
|
||||
`action` = VALUES(`action`),
|
||||
`is_open` = VALUES(`is_open`),
|
||||
`component` = VALUES(`component`),
|
||||
`remark` = VALUES(`remark`),
|
||||
`is_deleted` = VALUES(`is_deleted`);
|
||||
@@ -1026,6 +1026,9 @@ INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `s
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000003, 2075449200000000001, 'fee_item_edit', '编辑', 'fee_item_edit', '', '', 1, 2, 0, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000004, 2075449200000000001, 'fee_item_status', '修改状态', 'fee_item_status', '', '', 1, 2, 0, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000005, 2075449200000000001, 'fee_item_add', '新增', 'fee_item_add', '', '', 1, 2, 0, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000006, 2075449200000000001, 'fee_item_import', '批量导入', 'fee_item_import', '/api/blade-system/fee-item/import-fee-item', 'upload', 5, 2, 3, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000007, 2075449200000000001, 'fee_item_template', '下载模板', 'fee_item_template', '/api/blade-system/fee-item/export-template', 'download', 6, 2, 2, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075449200000000008, 2075449200000000001, 'fee_item_export', '批量导出', 'fee_item_export', '/api/blade-system/fee-item/export-fee-item', 'download', 7, 2, 2, 1, NULL, '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075436235826896898, 0, 'blade-transport', '车/船务管理', 'blade-transport', '/vehicle', 'iconfont icon-shebeiguanli', 10, 1, 0, 1, '', '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075437082342301697, 2075436235826896898, 'maintenance_record', '维修记录', 'maintenance_record', '/vehicle/maintenance-record', 'iconfont icon-wxbgongju', 20, 1, 0, 1, '', '', 0);
|
||||
INSERT INTO `blade_menu` (`id`, `parent_id`, `code`, `name`, `alias`, `path`, `source`, `sort`, `category`, `action`, `is_open`, `component`, `remark`, `is_deleted`) VALUES (2075437237678350338, 2075436235826896898, 'maintenance_plan', '保养记录', 'maintenance_plan', '/vehicle/maintenance-plan', 'iconfont iconicon_exchange', 30, 1, 0, 1, '', '', 0);
|
||||
|
||||
Reference in New Issue
Block a user