修复网络超时, 导致出库任务生成多次的bug
This commit is contained in:
parent
0a769431c6
commit
8ca9d65970
|
|
@ -11,7 +11,7 @@
|
|||
Target Server Version : 80034 (8.0.34)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 18/05/2025 16:46:37
|
||||
Date: 18/05/2025 17:24:27
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
|
|
@ -5033,7 +5033,8 @@ CREATE TABLE `t_app_order_out` (
|
|||
`update_time` datetime NOT NULL,
|
||||
`complete_time` datetime NULL DEFAULT NULL,
|
||||
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`order_id` DESC) USING BTREE
|
||||
PRIMARY KEY (`order_id` DESC) USING BTREE,
|
||||
UNIQUE INDEX `uniq_order_id`(`order_id` ASC) USING BTREE COMMENT '出库订单唯一索引'
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user