|
@@ -1104,3 +1104,86 @@ values(2024081714395204, '目标识别子任务删除', 2024081714395200, '4',
|
|
|
|
|
|
insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
values(2024081714395205, '目标识别子任务导出', 2024081714395200, '5', '', '', 1, 0, 'F', '0', '0', 'identification:identificationSubtask:export', '', 1, now(), 1, null, '');
|
|
|
+
|
|
|
+CREATE TABLE "public"."object_trace_merge" (
|
|
|
+ "id" "pg_catalog"."int8" NOT NULL,
|
|
|
+ "name" "pg_catalog"."varchar" COLLATE "pg_catalog"."default",
|
|
|
+ "status" "pg_catalog"."varchar" COLLATE "pg_catalog"."default",
|
|
|
+ "parameters" "pg_catalog"."text" COLLATE "pg_catalog"."default",
|
|
|
+ "preprocess_path" "pg_catalog"."varchar" COLLATE "pg_catalog"."default",
|
|
|
+ "result_path" "pg_catalog"."varchar" COLLATE "pg_catalog"."default",
|
|
|
+ "start_time" "pg_catalog"."timestamp",
|
|
|
+ "end_time" "pg_catalog"."timestamp",
|
|
|
+ "cost_second" "pg_catalog"."int8",
|
|
|
+ "create_by" "pg_catalog"."int8",
|
|
|
+ "create_time" "pg_catalog"."timestamp" DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ "update_by" "pg_catalog"."int8",
|
|
|
+ "update_time" "pg_catalog"."timestamp" DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ "remarks" "pg_catalog"."varchar" COLLATE "pg_catalog"."default" DEFAULT NULL::character varying,
|
|
|
+ "tenant_id" "pg_catalog"."int8" DEFAULT 0,
|
|
|
+ version integer DEFAULT 0,
|
|
|
+ del_flag smallint DEFAULT '0'::smallint NOT NULL,
|
|
|
+ CONSTRAINT "target_identification_subtask_details_pk" PRIMARY KEY ("id")
|
|
|
+);
|
|
|
+
|
|
|
+ALTER TABLE "public"."object_trace_merge"
|
|
|
+ OWNER TO "postgres";
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."id" IS '主键ID';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."name" IS '任务名称';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."status" IS '任务状态';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."parameters" IS '调用算法时所用的参数';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."preprocess_path" IS '预处理数据路径';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."result_path" IS '结果数据路径';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."start_time" IS '开始时间';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."end_time" IS '结束时间';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."cost_second" IS '耗时';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."create_by" IS '创建人';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."create_time" IS '创建时间';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."update_by" IS '更新人';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."update_time" IS '更新时间';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."remarks" IS '备注';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."version" IS '乐观锁';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."tenant_id" IS '租户编码';
|
|
|
+
|
|
|
+COMMENT ON COLUMN "public"."object_trace_merge"."del_flag" IS '逻辑删除标志(0代表存在 1代表删除)';
|
|
|
+
|
|
|
+COMMENT ON TABLE "public"."object_trace_merge" IS '多物体融合轨迹识别';
|
|
|
+
|
|
|
+-- 菜单 SQL
|
|
|
+insert into sys_menu (menu_id, menu_name, order_num, path, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(4, '多目标选择', '1', 'multiObj', 1, 0, 'M', '0', '0', 'demo:traceMerge:list', '', 1, now(), 1, null, '多目标选择');
|
|
|
+
|
|
|
+insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(2024101614471100, '多物体融合轨迹识别', 4, '1', '/demo/traceMerge', 'demo/traceMerge/index', 1, 0, 'C', '0', '0', 'demo:traceMerge:list', '', 1, now(), 1, null, '多物体融合轨迹识别菜单');
|
|
|
+
|
|
|
+-- 按钮 SQL
|
|
|
+insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(2024101614471101, '多物体融合轨迹识别查询', 2024101614471100, '1', '', '', 1, 0, 'F', '0', '0', 'demo:traceMerge:query', '', 1, now(), 1, null, '');
|
|
|
+
|
|
|
+insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(2024101614471102, '多物体融合轨迹识别新增', 2024101614471100, '2', '', '', 1, 0, 'F', '0', '0', 'demo:traceMerge:add', '', 1, now(), 1, null, '');
|
|
|
+
|
|
|
+insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(2024101614471103, '多物体融合轨迹识别修改', 2024101614471100, '3', '', '', 1, 0, 'F', '0', '0', 'demo:traceMerge:edit', '', 1, now(), 1, null, '');
|
|
|
+
|
|
|
+insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(2024101614471104, '多物体融合轨迹识别删除', 2024101614471100, '4', '', '', 1, 0, 'F', '0', '0', 'demo:traceMerge:remove', '', 1, now(), 1, null, '');
|
|
|
+
|
|
|
+insert into sys_menu (menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_by, create_time, update_by, update_time, remark)
|
|
|
+values(2024101614471105, '多物体融合轨迹识别导出', 2024101614471100, '5', '', '', 1, 0, 'F', '0', '0', 'demo:traceMerge:export', '', 1, now(), 1, null, '');
|