feat(ops): 安保工单模块完整实现 #1

Merged
lzh merged 17 commits from feat/security-work-order into master 2026-03-15 16:44:14 +08:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit c9d443a75b - Show all commits

View File

@@ -21,6 +21,7 @@ CREATE TABLE `ops_order_security_ext` (
-- 处理结果(完成时提交)
`result` text DEFAULT NULL COMMENT '处理结果描述',
`result_img_urls` varchar(2048) DEFAULT NULL COMMENT '处理结果图片URLJSON数组',
`false_alarm` tinyint(1) DEFAULT NULL COMMENT '是否误报: 1=误报',
-- 关键时间点
`dispatched_time` datetime DEFAULT NULL COMMENT '派单时间',

View File

@@ -0,0 +1,9 @@
-- ----------------------------
-- Incremental migration for ops_order_security_ext
-- Version: v1.1.0 (2026-03-15)
-- Description: Add false_alarm column for false alarm marking
-- ----------------------------
ALTER TABLE `ops_order_security_ext`
ADD COLUMN `false_alarm` tinyint(1) DEFAULT NULL COMMENT '是否误报: 1=误报'
AFTER `result_img_urls`;