/* Navicat Premium Data Transfer Source Server : DESKTOP-SCT31AM Source Server Type : SQL Server Source Server Version : 13001601 Source Catalog : WIDESEAWCS_ZH Source Schema : dbo Target Server Type : SQL Server Target Server Version : 13001601 File Encoding : 65001 Date: 17/06/2025 00:40:36 */ -- ---------------------------- -- Table structure for Dt_DeviceInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DeviceInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_DeviceInfo] GO CREATE TABLE [dbo].[Dt_DeviceInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [DeviceCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceType] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceStatus] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceIp] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DevicePort] int NOT NULL, [DevicePlcType] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceRemark] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL, [DispatchId] int NULL ) GO ALTER TABLE [dbo].[Dt_DeviceInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'设备编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DeviceCode' GO EXEC sp_addextendedproperty 'MS_Description', N'设备名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DeviceName' GO EXEC sp_addextendedproperty 'MS_Description', N'设备类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DeviceType' GO EXEC sp_addextendedproperty 'MS_Description', N'设备状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DeviceStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'设备IP', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DeviceIp' GO EXEC sp_addextendedproperty 'MS_Description', N'设备端口', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DevicePort' GO EXEC sp_addextendedproperty 'MS_Description', N'PLC类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DevicePlcType' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DeviceRemark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'调度表主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo', 'COLUMN', N'DispatchId' GO EXEC sp_addextendedproperty 'MS_Description', N'设备信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceInfo' GO -- ---------------------------- -- Records of Dt_DeviceInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_DeviceInfo] ON GO INSERT INTO [dbo].[Dt_DeviceInfo] ([Id], [DeviceCode], [DeviceName], [DeviceType], [DeviceStatus], [DeviceIp], [DevicePort], [DevicePlcType], [DeviceRemark], [Creater], [CreateDate], [Modifier], [ModifyDate], [DispatchId]) VALUES (N'1', N'FL_SC01', N'辅料堆垛机', N'SpeStackerCrane', N'0', N'192.168.100.80', N'502', N'InovanceAMTcp', NULL, N'System', N'2024-10-21 10:18:08.477', N'admin', N'2024-11-08 10:25:10.393', N'4') GO INSERT INTO [dbo].[Dt_DeviceInfo] ([Id], [DeviceCode], [DeviceName], [DeviceType], [DeviceStatus], [DeviceIp], [DevicePort], [DevicePlcType], [DeviceRemark], [Creater], [CreateDate], [Modifier], [ModifyDate], [DispatchId]) VALUES (N'1004', N'CP_SC01', N'成品堆垛机', N'SpeStackerCrane', N'0', N'192.168.100.90', N'502', N'InovanceAMTcp', NULL, N'System', N'2024-11-11 08:57:48.343', NULL, NULL, N'4') GO INSERT INTO [dbo].[Dt_DeviceInfo] ([Id], [DeviceCode], [DeviceName], [DeviceType], [DeviceStatus], [DeviceIp], [DevicePort], [DevicePlcType], [DeviceRemark], [Creater], [CreateDate], [Modifier], [ModifyDate], [DispatchId]) VALUES (N'1005', N'Line01', N'输送线', N'CommonConveyorLine', N'0', N'192.168.0.86', N'103', N'SiemensS7', NULL, N'System', N'2025-05-29 15:52:45.000', NULL, NULL, N'1007') GO SET IDENTITY_INSERT [dbo].[Dt_DeviceInfo] OFF GO -- ---------------------------- -- Table structure for Dt_DeviceProtocol -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DeviceProtocol]') AND type IN ('U')) DROP TABLE [dbo].[Dt_DeviceProtocol] GO CREATE TABLE [dbo].[Dt_DeviceProtocol] ( [Id] int IDENTITY(1,1) NOT NULL, [DeviceId] int NOT NULL, [DeviceChildCode] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceProDataBlock] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceProOffset] decimal(10,1) NOT NULL, [DeviceProDataType] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceProDataLength] int DEFAULT '1' NOT NULL, [DeviceProParamName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceProParamType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceProParamDes] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DeviceProRemark] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_DeviceProtocol] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'设备主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceId' GO EXEC sp_addextendedproperty 'MS_Description', N'设备子编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceChildCode' GO EXEC sp_addextendedproperty 'MS_Description', N'协议数据块', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProDataBlock' GO EXEC sp_addextendedproperty 'MS_Description', N'偏移量', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProOffset' GO EXEC sp_addextendedproperty 'MS_Description', N'数据类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProDataType' GO EXEC sp_addextendedproperty 'MS_Description', N'数据长度', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProDataLength' GO EXEC sp_addextendedproperty 'MS_Description', N'参数名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProParamName' GO EXEC sp_addextendedproperty 'MS_Description', N'参数类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProParamType' GO EXEC sp_addextendedproperty 'MS_Description', N'参数说明', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProParamDes' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'DeviceProRemark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'设备协议', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocol' GO -- ---------------------------- -- Records of Dt_DeviceProtocol -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocol] ON GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'1', N'FL_SC01', N'MD1001', N'.0', N'Dint', N'1', N'TaskNum', N'DeviceCommand', N'任务号', NULL, N'admin', N'2024-10-21 10:18:12.610', N'admin', N'2024-11-08 10:25:10.397') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'1', N'FL_SC01', N'MW2004', N'.0', N'int', N'1', N'WorkType', N'DeviceCommand', N'作业类型', N'1入2出3移库', N'admin', N'2024-10-21 10:18:12.610', N'admin', N'2024-11-08 10:25:10.397') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'1', N'FL_SC01', N'MW2009', N'.0', N'int', N'1', N'StartRow', N'DeviceCommand', N'起始行', NULL, N'admin', N'2024-10-21 10:18:12.610', N'admin', N'2024-11-08 10:25:10.400') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'1', N'FL_SC01', N'MW2010', N'.0', N'int', N'1', N'StartColumn', N'DeviceCommand', N'起始列', NULL, N'admin', N'2024-10-30 16:56:35.617', N'admin', N'2024-11-08 10:25:10.400') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'1', N'FL_SC01', N'MW2011', N'.0', N'int', N'1', N'StartLayer', N'DeviceCommand', N'起始层', NULL, N'admin', N'2024-10-30 16:58:36.710', N'admin', N'2024-11-08 10:25:10.400') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'1', N'FL_SC01', N'MW2012', N'.0', N'int', N'1', N'EndRow', N'DeviceCommand', N'终点行', NULL, N'admin', N'2024-10-30 17:00:43.723', N'admin', N'2024-11-08 10:25:10.403') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'1', N'FL_SC01', N'MW2013', N'.0', N'int', N'1', N'EndColumn', N'DeviceCommand', N'终点列', NULL, N'admin', N'2024-10-30 17:14:13.137', N'admin', N'2024-11-08 10:25:10.403') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'1', N'FL_SC01', N'MW2014', N'.0', N'int', N'1', N'EndLayer', N'DeviceCommand', N'终点层', NULL, N'admin', N'2024-10-30 17:14:13.137', N'admin', N'2024-11-08 10:25:10.407') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'1', N'FL_SC01', N'MW2000', N'.0', N'int', N'1', N'CommandSend', N'DeviceCommand', N'启动命令', N'1为启动,收到MW1512=1完成信号后开启信号给2反馈给PLC,PLC清完成信号1--0', N'admin', N'2024-10-30 17:14:13.137', N'admin', N'2024-11-08 10:25:10.407') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'1', N'FL_SC01', N'MW1500', N'.0', N'int', N'1', N'DeviceName', N'ReadDeviceCommand', N'反馈堆垛机号', NULL, N'admin', N'2024-10-30 17:14:13.140', N'admin', N'2024-11-08 10:25:10.407') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'1', N'FL_SC01', N'MW1501', N'.0', N'int', N'1', N'StackerCraneAutoStatus', N'ReadDeviceCommand', N'反馈控制方式', N'5:联机自动4:本机自动/半自动3:手动2:调试1:自学习', N'admin', N'2024-10-30 17:14:13.140', N'admin', N'2024-11-08 10:25:10.410') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'1', N'FL_SC01', N'MW1502', N'.0', N'int', N'1', N'StackerCraneWorkStatus', N'ReadDeviceCommand', N'反馈设备状态', N'1:空闲,2接收指令,3空载移动,4取货,5取货完成,6满载移动,7卸货,8入库完成,9出库完成,10手动删除任务', N'admin', N'2024-10-30 17:14:51.447', N'admin', N'2024-11-08 10:25:10.410') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'1', N'FL_SC01', N'MD755', N'.0', N'Dint', N'1', N'CurrentTaskNum', N'ReadDeviceCommand', N'反馈指令任务号', N'作业完成后上报完成的任务号', N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'1', N'FL_SC01', N'MW1512', N'.0', N'int', N'1', N'StackerCraneTaskCompleted', N'ReadDeviceCommand', N'反馈指令状态:1完成,2取消。', N'任务完成信号', N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'1', N'FL_SC01', N'MW1520', N'.0', N'int', N'1', N'AccuRow', N'ReadDeviceCommand', N'反馈当前排', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'1', N'FL_SC01', N'MW1521', N'.0', N'int', N'1', N'AccuColumn', N'ReadDeviceCommand', N'反馈当前列', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'1', N'FL_SC01', N'MW1522', N'.0', N'int', N'1', N'AccuLayer', N'ReadDeviceCommand', N'反馈当前层', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'1', N'FL_SC01', N'MW1548', N'.0', N'int', N'1', N'StackerCraneStatus', N'ReadDeviceCommand', N'允许信号,wcs允许下发动作指令', N'1准备就绪0未就绪;准备就绪可下发堆垛机任务', N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO INSERT INTO [dbo].[Dt_DeviceProtocol] ([Id], [DeviceId], [DeviceChildCode], [DeviceProDataBlock], [DeviceProOffset], [DeviceProDataType], [DeviceProDataLength], [DeviceProParamName], [DeviceProParamType], [DeviceProParamDes], [DeviceProRemark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'1', N'FL_SC01', N'MW1600', N'.0', N'int', N'1', N'Err_Status', N'ReadDeviceCommand', N'故障代码', NULL, N'admin', N'2024-10-30 17:17:56.353', N'admin', N'2024-11-08 10:25:10.413') GO SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocol] OFF GO -- ---------------------------- -- Table structure for Dt_DeviceProtocolDetail -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DeviceProtocolDetail]') AND type IN ('U')) DROP TABLE [dbo].[Dt_DeviceProtocolDetail] GO CREATE TABLE [dbo].[Dt_DeviceProtocolDetail] ( [Id] int IDENTITY(1,1) NOT NULL, [DeviceType] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeviceProParamName] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [ProtocolDetailType] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [ProtocalDetailValue] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [ProtocolDetailDes] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_DeviceProtocolDetail] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'设备类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'DeviceType' GO EXEC sp_addextendedproperty 'MS_Description', N'设备协议参数名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'DeviceProParamName' GO EXEC sp_addextendedproperty 'MS_Description', N'设备协议明细类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'ProtocolDetailType' GO EXEC sp_addextendedproperty 'MS_Description', N'设备协议明细取值', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'ProtocalDetailValue' GO EXEC sp_addextendedproperty 'MS_Description', N'设备协议明细说明', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'ProtocolDetailDes' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'设备协议明细', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DeviceProtocolDetail' GO -- ---------------------------- -- Records of Dt_DeviceProtocolDetail -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocolDetail] ON GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'SpeStackerCrane', N'StackerCraneStatus', N'Ready', N'1', N'设备状态(1:准备就绪)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:03:13.193') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'SpeStackerCrane', N'StackerCraneStatus', N'Unkonw', N'0', N'设备状态(0:未知)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:03:48.797') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'Maintenance', N'2', N'工作模式(2:调试)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:04:07.243') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'Manual', N'3', N'工作模式(3:手动)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:04:32.090') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'SemiAutomatic', N'4', N'工作模式(4:半自动)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:04:56.577') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'Automatic', N'5', N'工作模式(5:联机)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:05:17.013') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'Standby', N'1', N'作业状态(1:待机)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:05:32.000') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickUp', N'2', N'作业状态(2:收到任务)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:05:47.323') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickAfterMove', N'6', N'作业状态(6:取货完后移动)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:09:20.447') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'Putting', N'7', N'作业状态(7:放货中)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:06:41.770') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PutCompleted', N'8', N'作业状态(8:放货完成)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:07:33.260') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'SpeStackerCrane', N'StackerCraneTaskCompleted', N'WorkCompleted', N'1', N'任务状态(1:任务完成)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', N'2024-10-31 14:12:45.800') GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickBeforeMove', N'3', N'作业状态(3:取货前移动)', NULL, N'admin', N'2024-10-31 14:10:40.030', NULL, NULL) GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'SpeStackerCrane', N'StackerCraneWorkStatus', N'PickUp', N'4', N'作业状态(4:取货中)', NULL, N'admin', N'2024-10-31 14:11:19.473', NULL, NULL) GO INSERT INTO [dbo].[Dt_DeviceProtocolDetail] ([Id], [DeviceType], [DeviceProParamName], [ProtocolDetailType], [ProtocalDetailValue], [ProtocolDetailDes], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'40', N'SpeStackerCrane', N'StackerCraneAutoStatus', N'SelfStudy', N'1', N'工作模式(1:自学习)', NULL, N'admin', N'2024-10-21 10:18:14.690', N'admin', NULL) GO SET IDENTITY_INSERT [dbo].[Dt_DeviceProtocolDetail] OFF GO -- ---------------------------- -- Table structure for Dt_DispatchInfo -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_DispatchInfo]') AND type IN ('U')) DROP TABLE [dbo].[Dt_DispatchInfo] GO CREATE TABLE [dbo].[Dt_DispatchInfo] ( [Id] int IDENTITY(1,1) NOT NULL, [Name] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [JobGroup] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [AssemblyName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [ClassName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [IntervalSecond] int NOT NULL, [BeginTime] datetime NULL, [EndTime] datetime NULL, [Remark] varchar(1000) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_DispatchInfo] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'任务名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'Name' GO EXEC sp_addextendedproperty 'MS_Description', N'任务分组', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'JobGroup' GO EXEC sp_addextendedproperty 'MS_Description', N'任务所在DLL对应的程序集名称', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'AssemblyName' GO EXEC sp_addextendedproperty 'MS_Description', N'任务所在类', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'ClassName' GO EXEC sp_addextendedproperty 'MS_Description', N'执行间隔时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'IntervalSecond' GO EXEC sp_addextendedproperty 'MS_Description', N'开始时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'BeginTime' GO EXEC sp_addextendedproperty 'MS_Description', N'结束时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'EndTime' GO EXEC sp_addextendedproperty 'MS_Description', N'任务描述', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'调度服务配置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_DispatchInfo' GO -- ---------------------------- -- Records of Dt_DispatchInfo -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_DispatchInfo] ON GO INSERT INTO [dbo].[Dt_DispatchInfo] ([Id], [Name], [JobGroup], [AssemblyName], [ClassName], [IntervalSecond], [BeginTime], [EndTime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'R01', N'SpeStackerCrane', N'WIDESEAWCS_Tasks', N'CommonStackerCraneJob', N'1', NULL, NULL, NULL, N'admin', N'2024-10-25 16:56:09.893', N'admin', N'2024-10-28 13:57:52.737') GO INSERT INTO [dbo].[Dt_DispatchInfo] ([Id], [Name], [JobGroup], [AssemblyName], [ClassName], [IntervalSecond], [BeginTime], [EndTime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1006', N'Log', N'OtherDevice', N'WIDESEAWCS_Tasks', N'LogJob', N'1', NULL, NULL, NULL, N'admin', N'2024-11-08 10:21:57.300', N'admin', N'2024-11-11 14:30:25.130') GO INSERT INTO [dbo].[Dt_DispatchInfo] ([Id], [Name], [JobGroup], [AssemblyName], [ClassName], [IntervalSecond], [BeginTime], [EndTime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1007', N'输送线', N'CommonConveyorLine', N'WIDESEAWCS_Tasks', N'CommonConveyorLineJob', N'1', NULL, NULL, NULL, N'admin', N'2025-05-29 15:56:39.000', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_DispatchInfo] OFF GO -- ---------------------------- -- Table structure for Dt_Router -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Router]') AND type IN ('U')) DROP TABLE [dbo].[Dt_Router] GO CREATE TABLE [dbo].[Dt_Router] ( [Id] int IDENTITY(1,1) NOT NULL, [StartPosi] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextPosi] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [InOutType] bigint NOT NULL, [ChildPosi] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [ChildPosiDeviceCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [SrmRow] int NULL, [SrmColumn] int NULL, [SrmLayer] int NULL, [Depth] int NULL, [IsEnd] bit NOT NULL, [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_Router] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'起点位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'StartPosi' GO EXEC sp_addextendedproperty 'MS_Description', N'终点位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'NextPosi' GO EXEC sp_addextendedproperty 'MS_Description', N'路由类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'InOutType' GO EXEC sp_addextendedproperty 'MS_Description', N'子位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'ChildPosi' GO EXEC sp_addextendedproperty 'MS_Description', N'子位置所属设备', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'ChildPosiDeviceCode' GO EXEC sp_addextendedproperty 'MS_Description', N'堆垛机取货/放货行', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'SrmRow' GO EXEC sp_addextendedproperty 'MS_Description', N'堆垛机取货/放货列', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'SrmColumn' GO EXEC sp_addextendedproperty 'MS_Description', N'堆垛机取货/放货层', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'SrmLayer' GO EXEC sp_addextendedproperty 'MS_Description', N'深度', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'Depth' GO EXEC sp_addextendedproperty 'MS_Description', N'是否是最终点', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'IsEnd' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'设备路由配置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Router' GO -- ---------------------------- -- Records of Dt_Router -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_Router] ON GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'101', N'102', N'1', N'102', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'102', N'103', N'1', N'103', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'103', N'104', N'1', N'104', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'104', N'105', N'1', N'105', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'105', N'106', N'1', N'106', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'106', N'107', N'1', N'107', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'107', N'108', N'1', N'108', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'108', N'109', N'1', N'109', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'109', N'110', N'1', N'110', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'51', N'110', N'SC01', N'1', N'SC01', N'1002', N'1', N'100', N'1', N'1', N'1', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'52', N'SC01', N'111', N'2', N'111', N'1002', N'2', N'100', N'1', N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'53', N'111', N'112', N'2', N'112', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'54', N'112', N'113', N'2', N'113', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'113', N'114', N'2', N'114', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'114', N'115', N'2', N'115', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'57', N'115', N'116', N'2', N'116', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'58', N'116', N'117', N'2', N'117', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'117', N'118', N'2', N'118', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'60', N'118', N'119', N'2', N'119', N'1002', NULL, NULL, NULL, N'1', N'0', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO INSERT INTO [dbo].[Dt_Router] ([Id], [StartPosi], [NextPosi], [InOutType], [ChildPosi], [ChildPosiDeviceCode], [SrmRow], [SrmColumn], [SrmLayer], [Depth], [IsEnd], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'119', N'CLOutAreaA', N'2', N'120', N'1002', NULL, NULL, NULL, N'1', N'1', NULL, N'admin', N'2024-10-21 10:18:18.557', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_Router] OFF GO -- ---------------------------- -- Table structure for Dt_Task -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Task]') AND type IN ('U')) DROP TABLE [dbo].[Dt_Task] GO CREATE TABLE [dbo].[Dt_Task] ( [TaskId] int IDENTITY(1,1) NOT NULL, [TaskNum] int NOT NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [Roadway] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL, [TaskType] int NOT NULL, [TaskStatus] int NOT NULL, [SourceAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [TargetAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [ExceptionMessage] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [Depth] int NULL, [Grade] int NOT NULL, [WMSId] int NOT NULL, [Dispatchertime] datetime NULL, [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_Task] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Roadway' GO EXEC sp_addextendedproperty 'MS_Description', N'任务类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskType' GO EXEC sp_addextendedproperty 'MS_Description', N'任务状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TaskStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'起始地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'SourceAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'目标地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'TargetAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'当前位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'CurrentAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'下一地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'NextAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'异常信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'ExceptionMessage' GO EXEC sp_addextendedproperty 'MS_Description', N'优先级', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Grade' GO EXEC sp_addextendedproperty 'MS_Description', N'WMS任务主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'WMSId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务下发时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Dispatchertime' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'任务信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task' GO -- ---------------------------- -- Records of Dt_Task -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_Task] ON GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'42', N'121', N'10', N'SC01_CP', N'300', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'CP-002-001-001-01', N'CP-001-001-003-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.833', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'43', N'118', N'1', N'SC01_CP', N'100', N'100', N'CP-001-001-001-02', N'CP-003-062-001-01', N'CP-001-001-001-02', N'CP-003-062-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'44', N'122', N'11', N'SC01_CP', N'300', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'CP-002-001-002-01', N'CP-001-001-004-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'45', N'119', N'2', N'SC01_CP', N'100', N'100', N'CP-001-001-002-02', N'CP-003-062-001-01', N'CP-001-001-002-02', N'CP-003-062-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'46', N'123', N'4', N'SC02_CP', N'300', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'CP-002-060-001-01', N'CP-004-060-003-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'47', N'120', N'3', N'SC02_CP', N'100', N'100', N'CP-001-060-001-02', N'CP-002-061-001-01', N'CP-001-060-001-02', N'CP-002-061-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 22:09:12.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'48', N'129', N'15', N'SC02_CP', N'300', N'300', N'CP-003-060-001-01', N'CP-004-060-004-02', N'CP-003-060-001-01', N'CP-004-060-004-02', NULL, N'1', N'0', N'0', NULL, NULL, N'System', N'2025-06-16 23:01:07.037', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'128', N'13', N'SC02_CP', N'100', N'100', N'CP-004-060-001-02', N'CP-002-061-001-01', N'CP-004-060-001-02', N'CP-002-061-001-01', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 23:01:07.037', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'127', N'12', N'SC02_CP', N'100', N'100', N'CP-002-060-004-01', N'CP-002-061-001-01', N'CP-002-060-004-01', N'CP-002-061-001-01', NULL, N'1', N'3', N'0', NULL, NULL, N'System', N'2025-06-16 23:02:32.470', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'55', N'135', N'6', N'SC02_CP', N'100', N'100', N'CP-002-060-002-01', N'CP-002-061-001-01', N'CP-002-060-002-01', N'CP-002-061-001-01', NULL, N'1', N'3', N'0', NULL, NULL, N'System', N'2025-06-16 23:54:18.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'56', N'134', N'5', N'SC02_CP', N'100', N'100', N'CP-001-060-002-02', N'CP-002-061-001-01', N'CP-001-060-002-02', N'CP-002-061-001-01', NULL, N'2', N'3', N'0', NULL, NULL, N'System', N'2025-06-16 23:54:18.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_Task] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'61', N'141', N'16', N'SC02_CP', N'100', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'CP-003-060-002-01', N'CP-002-061-001-01', NULL, N'1', N'3', N'0', NULL, NULL, N'System', N'2025-06-17 00:04:36.387', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_Task] OFF GO -- ---------------------------- -- Table structure for Dt_Task_Hty -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_Task_Hty]') AND type IN ('U')) DROP TABLE [dbo].[Dt_Task_Hty] GO CREATE TABLE [dbo].[Dt_Task_Hty] ( [TaskId] int IDENTITY(1,1) NOT NULL, [TaskNum] int NOT NULL, [PalletCode] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [Roadway] varchar(10) COLLATE Chinese_PRC_CI_AS NOT NULL, [TaskType] int NOT NULL, [TaskStatus] int NOT NULL, [SourceAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [TargetAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [ExceptionMessage] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [Depth] int NULL, [Grade] int NOT NULL, [WMSId] int NOT NULL, [Dispatchertime] datetime NULL, [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_Task_Hty] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'托盘编号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'PalletCode' GO EXEC sp_addextendedproperty 'MS_Description', N'巷道号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Roadway' GO EXEC sp_addextendedproperty 'MS_Description', N'任务类型', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskType' GO EXEC sp_addextendedproperty 'MS_Description', N'任务状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TaskStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'起始地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'SourceAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'目标地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'TargetAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'当前位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'CurrentAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'下一地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'NextAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'异常信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'ExceptionMessage' GO EXEC sp_addextendedproperty 'MS_Description', N'优先级', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Grade' GO EXEC sp_addextendedproperty 'MS_Description', N'WMS任务主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'WMSId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务下发时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Dispatchertime' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'任务信息', 'SCHEMA', N'dbo', 'TABLE', N'Dt_Task_Hty' GO -- ---------------------------- -- Records of Dt_Task_Hty -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_Task_Hty] ON GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3148', N'1', N'1111', N'SC01_FL', N'300', N'320', N'FL-001-050-001-01', N'FL-003-060-001-01', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 15:27:38.890', NULL, N'System', N'2025-06-12 15:08:40.073', N'WMS', N'2025-06-12 15:33:15.833') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3195', N'2', N'1111', N'SC01_FL', N'300', N'320', N'FL-003-060-001-01', N'FL-001-058-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 15:54:09.023', NULL, N'System', N'2025-06-12 15:09:40.073', N'WMS', N'2025-06-12 15:56:04.850') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3196', N'3', N'1111', N'SC01_FL', N'300', N'320', N'FL-001-058-001-02', N'FL-001-051-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'2', N'0', N'2025-06-12 16:30:03.393', NULL, N'System', N'2025-06-12 15:09:40.073', N'WMS', N'2025-06-12 16:31:17.343') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3197', N'4', N'1111', N'SC01_FL', N'300', N'320', N'FL-001-051-001-02', N'FL-004-058-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:43:41.190', NULL, N'System', N'2025-06-12 15:09:40.073', N'WMS', N'2025-06-12 16:54:32.217') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3198', N'5', N'1111', N'SC01_FL', N'300', N'320', N'FL-004-058-001-02', N'FL-002-041-001-01', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:54:44.500', NULL, N'System', N'2025-06-12 15:09:41.073', N'WMS', N'2025-06-12 16:56:18.203') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3199', N'6', N'1111', N'SC01_FL', N'300', N'320', N'FL-002-041-001-01', N'FL-003-031-001-01', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:57:07.637', NULL, N'System', N'2025-06-12 15:09:42.073', N'WMS', N'2025-06-12 16:58:09.250') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3200', N'7', N'1111', N'SC01_FL', N'300', N'320', N'FL-003-031-001-01', N'FL-004-060-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:58:10.857', NULL, N'System', N'2025-06-12 15:09:43.073', N'WMS', N'2025-06-12 16:59:47.123') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3201', N'8', N'1111', N'SC01_FL', N'300', N'320', N'FL-004-060-001-02', N'FL-001-058-001-02', N'FL-002-061-001-01', N'FL-001-001-001-02', NULL, N'2', N'1', N'0', N'2025-06-12 16:59:48.393', NULL, N'System', N'2025-06-12 15:09:44.073', N'WMS', N'2025-06-12 17:00:54.477') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3202', N'83', N'1', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-001-001-001-02', N'CP-002-062-001-01', N'CP-001-001-001-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 13:58:01.250', N'WMS', N'2025-06-16 15:51:03.573') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3203', N'83', N'2', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-001-001-002-02', N'CP-002-062-001-01', N'CP-001-001-002-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 14:19:01.687', N'WMS', N'2025-06-16 16:28:31.680') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3204', N'87', N'4', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-001-01', N'CP-003-061-001-01', N'CP-002-060-001-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:45:14.387', N'WMS', N'2025-06-16 16:49:17.543') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3205', N'88', N'5', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-002-02', N'CP-003-061-001-01', N'CP-001-060-002-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:52:20.707', N'WMS', N'2025-06-16 16:54:36.053') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3206', N'92', N'9', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-004-02', N'CP-003-061-001-01', N'CP-001-060-004-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:06:41.283', N'admin', N'2025-06-16 17:07:02.720') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3207', N'93', N'10', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-002-001-001-01', N'CP-002-062-001-01', N'CP-002-001-001-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:30:00.287', N'admin', N'2025-06-16 17:31:32.690') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3208', N'94', N'11', N'SC01_CP', N'200', N'290', N'CP-002-062-001-01', N'CP-002-001-002-01', N'CP-002-062-001-01', N'CP-002-001-002-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:36:27.450', N'admin', N'2025-06-16 17:37:17.923') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3209', N'95', N'12', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-004-01', N'CP-003-061-001-01', N'CP-002-060-004-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:40:02.647', N'admin', N'2025-06-16 17:49:01.727') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3210', N'96', N'13', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-004-060-001-02', N'CP-003-061-001-01', N'CP-004-060-001-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:41:15.287', N'admin', N'2025-06-16 17:49:31.583') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3211', N'97', N'15', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-003-060-001-01', N'CP-003-061-001-01', N'CP-003-060-001-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:51:02.107', N'WMS', N'2025-06-16 17:52:33.190') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3212', N'98', N'14', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-004-060-002-02', N'CP-003-061-001-01', N'CP-004-060-002-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:53:37.773', N'WMS', N'2025-06-16 17:54:57.250') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3213', N'99', N'16', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-003-060-002-01', N'CP-003-061-001-01', N'CP-003-060-002-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:55:32.313', N'WMS', N'2025-06-16 17:55:56.583') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3214', N'91', N'8', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-003-01', N'CP-003-061-001-01', N'CP-002-060-003-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:03:26.670', N'admin', N'2025-06-16 17:59:59.073') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3215', N'90', N'7', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-003-02', N'CP-003-061-001-01', N'CP-001-060-003-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 17:00:18.520', N'admin', N'2025-06-16 18:00:45.490') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3216', N'89', N'6', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-002-060-002-01', N'CP-003-061-001-01', N'CP-002-060-002-01', NULL, N'1', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:56:40.437', N'admin', N'2025-06-16 18:01:56.593') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3217', N'86', N'3', N'SC02_CP', N'200', N'290', N'CP-003-061-001-01', N'CP-001-060-001-02', N'CP-003-061-001-01', N'CP-001-060-001-02', NULL, N'2', N'2', N'0', NULL, NULL, N'System', N'2025-06-16 16:39:31.107', N'admin', N'2025-06-16 18:02:17.590') GO INSERT INTO [dbo].[Dt_Task_Hty] ([TaskId], [TaskNum], [PalletCode], [Roadway], [TaskType], [TaskStatus], [SourceAddress], [TargetAddress], [CurrentAddress], [NextAddress], [ExceptionMessage], [Depth], [Grade], [WMSId], [Dispatchertime], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3218', N'140', N'14', N'SC02_CP', N'100', N'190', N'CP-004-060-002-02', N'CP-002-061-001-01', N'CP-004-060-002-02', N'CP-002-061-001-01', NULL, N'2', N'3', N'0', NULL, NULL, N'System', N'2025-06-17 00:04:36.397', N'WMS', N'2025-06-17 00:29:40.333') GO SET IDENTITY_INSERT [dbo].[Dt_Task_Hty] OFF GO -- ---------------------------- -- Table structure for Dt_TaskExecuteDetail -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Dt_TaskExecuteDetail]') AND type IN ('U')) DROP TABLE [dbo].[Dt_TaskExecuteDetail] GO CREATE TABLE [dbo].[Dt_TaskExecuteDetail] ( [TaskDetailId] int IDENTITY(1,1) NOT NULL, [TaskId] int NOT NULL, [TaskNum] int NOT NULL, [TaskState] int NOT NULL, [CurrentAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [NextAddress] varchar(20) COLLATE Chinese_PRC_CI_AS NOT NULL, [IsManual] bit NOT NULL, [IsNormal] bit NOT NULL, [Description] varchar(max) COLLATE Chinese_PRC_CI_AS NOT NULL, [Remark] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Dt_TaskExecuteDetail] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'TaskDetailId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务主键', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'TaskId' GO EXEC sp_addextendedproperty 'MS_Description', N'任务号', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'TaskNum' GO EXEC sp_addextendedproperty 'MS_Description', N'任务状态', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'TaskState' GO EXEC sp_addextendedproperty 'MS_Description', N'当前位置', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'CurrentAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'下一地址', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'NextAddress' GO EXEC sp_addextendedproperty 'MS_Description', N'是否人工操作', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'IsManual' GO EXEC sp_addextendedproperty 'MS_Description', N'是否正常', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'IsNormal' GO EXEC sp_addextendedproperty 'MS_Description', N'描述', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'Description' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'任务执行明细', 'SCHEMA', N'dbo', 'TABLE', N'Dt_TaskExecuteDetail' GO -- ---------------------------- -- Records of Dt_TaskExecuteDetail -- ---------------------------- SET IDENTITY_INSERT [dbo].[Dt_TaskExecuteDetail] ON GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11703', N'14', N'83', N'200', N'CP-002-062-001-01', N'CP-001-001-001-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 13:58:01.840', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11704', N'15', N'85', N'200', N'CP-002-062-001-01', N'CP-001-001-002-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 14:19:02.880', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11709', N'14', N'83', N'200', N'CP-002-062-001-01', N'CP-001-001-001-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 15:51:11.293', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11714', N'15', N'83', N'200', N'CP-002-062-001-01', N'CP-001-001-002-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 16:28:32.450', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11715', N'16', N'86', N'200', N'CP-003-061-001-01', N'CP-001-060-001-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:39:32.003', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11718', N'17', N'87', N'200', N'CP-003-061-001-01', N'CP-002-060-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:45:15.427', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11719', N'17', N'87', N'200', N'CP-003-061-001-01', N'CP-002-060-001-01', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 16:49:18.663', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11720', N'18', N'88', N'200', N'CP-003-061-001-01', N'CP-001-060-002-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:52:21.963', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11721', N'18', N'88', N'200', N'CP-003-061-001-01', N'CP-001-060-002-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 16:54:37.140', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11722', N'19', N'89', N'200', N'CP-003-061-001-01', N'CP-002-060-002-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 16:56:41.300', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11724', N'20', N'90', N'200', N'CP-003-061-001-01', N'CP-001-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:00:19.287', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11726', N'21', N'91', N'200', N'CP-003-061-001-01', N'CP-002-060-003-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:03:27.570', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11728', N'22', N'92', N'200', N'CP-003-061-001-01', N'CP-001-060-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:06:41.903', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11729', N'22', N'92', N'200', N'CP-003-061-001-01', N'CP-001-060-004-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:07:03.227', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11730', N'23', N'93', N'200', N'CP-002-062-001-01', N'CP-002-001-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:30:01.243', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11731', N'23', N'93', N'200', N'CP-002-062-001-01', N'CP-002-001-001-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:31:34.103', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11732', N'24', N'94', N'200', N'CP-002-062-001-01', N'CP-002-001-002-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:36:28.990', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11733', N'24', N'94', N'200', N'CP-002-062-001-01', N'CP-002-001-002-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:37:19.203', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11734', N'25', N'95', N'200', N'CP-003-061-001-01', N'CP-002-060-004-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:40:03.247', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11735', N'26', N'96', N'200', N'CP-003-061-001-01', N'CP-004-060-001-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:41:16.077', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11736', N'25', N'95', N'200', N'CP-003-061-001-01', N'CP-002-060-004-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:49:02.627', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11737', N'26', N'96', N'200', N'CP-003-061-001-01', N'CP-004-060-001-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 17:49:32.507', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11738', N'27', N'97', N'200', N'CP-003-061-001-01', N'CP-003-060-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:51:03.057', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11739', N'27', N'97', N'200', N'CP-003-061-001-01', N'CP-003-060-001-01', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 17:52:34.160', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11740', N'28', N'98', N'200', N'CP-003-061-001-01', N'CP-004-060-002-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:53:38.833', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11741', N'28', N'98', N'200', N'CP-003-061-001-01', N'CP-004-060-002-02', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 17:54:58.227', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11742', N'29', N'99', N'200', N'CP-003-061-001-01', N'CP-003-060-002-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 17:55:33.320', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11743', N'29', N'99', N'200', N'CP-003-061-001-01', N'CP-003-060-002-01', N'0', N'1', N'堆垛机入库完成', NULL, N'System', N'2025-06-16 17:55:57.493', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11744', N'21', N'91', N'200', N'CP-003-061-001-01', N'CP-002-060-003-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:00:00.093', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11745', N'20', N'90', N'200', N'CP-003-061-001-01', N'CP-001-060-003-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:00:46.770', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11746', N'19', N'89', N'200', N'CP-003-061-001-01', N'CP-002-060-002-01', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:01:57.267', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11747', N'16', N'86', N'200', N'CP-003-061-001-01', N'CP-001-060-001-02', N'1', N'1', N'堆垛机入库完成', NULL, N'admin', N'2025-06-16 18:02:18.073', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11748', N'30', N'103', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.833', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11749', N'31', N'100', N'100', N'CP-001-001-001-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11750', N'32', N'104', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11751', N'33', N'101', N'100', N'CP-001-001-002-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11752', N'34', N'105', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11753', N'35', N'102', N'100', N'CP-001-060-001-02', N'A04', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:41:36.837', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11754', N'36', N'115', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11755', N'37', N'112', N'100', N'CP-001-001-001-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11756', N'38', N'116', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11757', N'39', N'113', N'100', N'CP-001-001-002-02', N'A01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11758', N'40', N'117', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11759', N'41', N'114', N'100', N'CP-001-060-001-02', N'A04', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 21:58:10.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11760', N'42', N'121', N'300', N'CP-002-001-001-01', N'CP-001-001-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11761', N'43', N'118', N'100', N'CP-001-001-001-02', N'CP-003-062-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11762', N'44', N'122', N'300', N'CP-002-001-002-01', N'CP-001-001-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11763', N'45', N'119', N'100', N'CP-001-001-002-02', N'CP-003-062-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11764', N'46', N'123', N'300', N'CP-002-060-001-01', N'CP-004-060-003-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11765', N'47', N'120', N'100', N'CP-001-060-001-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 22:09:16.937', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11766', N'48', N'129', N'300', N'CP-003-060-001-01', N'CP-004-060-004-02', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:01:11.160', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11767', N'49', N'128', N'100', N'CP-004-060-001-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:01:11.163', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11768', N'50', N'127', N'100', N'CP-002-060-004-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:02:34.913', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11769', N'51', N'131', N'100', N'CP-002-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.977', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11770', N'52', N'133', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.977', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11771', N'53', N'130', N'100', N'CP-001-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.980', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11772', N'54', N'132', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:47:19.983', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11773', N'55', N'135', N'100', N'CP-002-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:54:26.793', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11774', N'56', N'134', N'100', N'CP-001-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:54:26.793', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11775', N'57', N'137', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:58:34.580', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11776', N'58', N'136', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-16 23:58:34.580', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11777', N'59', N'139', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:00:28.997', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11778', N'60', N'138', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:00:29.000', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11779', N'61', N'141', N'100', N'CP-003-060-002-01', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:04:37.843', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11780', N'62', N'140', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'接收WMS任务', NULL, N'System', N'2025-06-17 00:04:37.843', NULL, NULL) GO INSERT INTO [dbo].[Dt_TaskExecuteDetail] ([TaskDetailId], [TaskId], [TaskNum], [TaskState], [CurrentAddress], [NextAddress], [IsManual], [IsNormal], [Description], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11781', N'62', N'140', N'100', N'CP-004-060-002-02', N'CP-002-061-001-01', N'0', N'1', N'堆垛机出库完成', NULL, N'System', N'2025-06-17 00:29:41.733', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Dt_TaskExecuteDetail] OFF GO -- ---------------------------- -- Table structure for Sys_Department -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Department]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Department] GO CREATE TABLE [dbo].[Sys_Department] ( [DepartmentId] int IDENTITY(1,1) NOT NULL, [DepartmentName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DepartmentCode] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [ParentId] int NOT NULL, [DepartmentType] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Enable] int NOT NULL, [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_Department] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'组织ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentId' GO EXEC sp_addextendedproperty 'MS_Description', N'组织名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentName' GO EXEC sp_addextendedproperty 'MS_Description', N'组织编号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentCode' GO EXEC sp_addextendedproperty 'MS_Description', N'上级组织', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'部门类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'DepartmentType' GO EXEC sp_addextendedproperty 'MS_Description', N'是否可用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'组织架构', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Department' GO -- ---------------------------- -- Records of Sys_Department -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Department] ON GO SET IDENTITY_INSERT [dbo].[Sys_Department] OFF GO -- ---------------------------- -- Table structure for Sys_Dictionary -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Dictionary]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Dictionary] GO CREATE TABLE [dbo].[Sys_Dictionary] ( [DicId] int IDENTITY(1,1) NOT NULL, [Config] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [DBServer] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DBSql] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [DicName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DicNo] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Enable] tinyint NULL, [OrderNo] int NULL, [ParentId] int NULL, [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [SystemType] int NOT NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_Dictionary] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'字典ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DicId' GO EXEC sp_addextendedproperty 'MS_Description', N'配置项', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Config' GO EXEC sp_addextendedproperty 'MS_Description', N'数据库服务', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DBServer' GO EXEC sp_addextendedproperty 'MS_Description', N'Sql语句', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DBSql' GO EXEC sp_addextendedproperty 'MS_Description', N'字典名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DicName' GO EXEC sp_addextendedproperty 'MS_Description', N'字典编号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'DicNo' GO EXEC sp_addextendedproperty 'MS_Description', N'是否启用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'排序号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'父级ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'系统类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'SystemType' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'字典数据', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Dictionary' GO -- ---------------------------- -- Records of Sys_Dictionary -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Dictionary] ON GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'{valueField: ''Enable'', textField: ''Enable'', containField: null, handler: null }', N'1', NULL, N'是否值', N'enable', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2022-01-03 18:30:18.113') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'30', N'{valueField: ''Success'', textField: ''Success'', containField: null, handler: null } ', NULL, NULL, N'响应状态', N'restatus', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'测试超级管理员', N'2018-06-12 10:21:48.000') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'31', N'{valueField: ''LogType'', textField: ''LogType'', containField: null, handler: null } ', NULL, NULL, N'日志类型', N'log', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2022-04-04 13:21:54.927') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'32', N'{valueField: ''Role_Id'', textField: ''RoleName'', containField: [''Role_Id'',''RoleName''], handler: null } ', NULL, N'SELECT RoleId as ''key'',RoleName as ''value'' FROM Sys_Role WHERE Enable=1', N'角色列表', N'roles', N'1', N'123', N'0', N'sql语句需要key,value列,界面才能绑定数据源', N'10', N'system', N'2024-10-21 10:17:32.357', N'测试超级管理员', N'2018-07-13 15:03:53.000') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'35', N'{ valueField: ''AuditStatus'', textField: ''AuditStatus'', containField:null }', NULL, NULL, N'审核状态', N'audit', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'49', N'{ valueField: ''Gender'', textField: ''Gender'', containField:null }', NULL, NULL, N'性别', N'gender', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'测试超级管理员', N'2018-07-23 11:10:28.000') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'50', N'{ valueField: ''Enable'', textField: ''Enable'', containField:null }', NULL, NULL, N'启用状态', N'status', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'59', N'{ valueField: ''IsRegregisterPhone'', textField: ''IsRegregisterPhone'', containField:null }', NULL, NULL, N'手机用户', N'isphone', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2020-11-20 23:05:48.303') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'66', NULL, NULL, N'SELECT RoleId AS id,parentId,RoleId AS [key],RoleName AS value FROM Sys_Role', N'级联角色', N'tree_roles', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', N'超级管理员', N'2020-11-20 23:08:03.217') GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'67', NULL, NULL, NULL, N'nav', N'nav', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'70', NULL, NULL, NULL, N'请求方式', N'请求方式', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', NULL, NULL, NULL, N'定时任务状态', N'定时任务状态', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'72', NULL, NULL, N'SELECT DepartmentId AS ''key'',DepartmentId AS ''id'',ParentId AS parentId,DepartmentName as ''value'' FROM Sys_Department', N'组织机构', N'组织机构', N'1', NULL, N'0', NULL, N'10', N'system', N'2024-10-21 10:17:32.357', NULL, NULL) GO INSERT INTO [dbo].[Sys_Dictionary] ([DicId], [Config], [DBServer], [DBSql], [DicName], [DicNo], [Enable], [OrderNo], [ParentId], [Remark], [SystemType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'75', NULL, NULL, NULL, N'日志状态', N'LogState', N'1', NULL, N'0', NULL, N'1', N'超级管理员', N'2024-10-21 10:17:32.357', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_Dictionary] OFF GO -- ---------------------------- -- Table structure for Sys_DictionaryList -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_DictionaryList]') AND type IN ('U')) DROP TABLE [dbo].[Sys_DictionaryList] GO CREATE TABLE [dbo].[Sys_DictionaryList] ( [DicListId] int IDENTITY(1,1) NOT NULL, [DicName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DicValue] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [DicId] int NOT NULL, [Enable] tinyint NULL, [OrderNo] int NULL, [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_DictionaryList] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'字典列表ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicListId' GO EXEC sp_addextendedproperty 'MS_Description', N'数据源Text', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicName' GO EXEC sp_addextendedproperty 'MS_Description', N'数据源Value', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicValue' GO EXEC sp_addextendedproperty 'MS_Description', N'数据源ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'DicId' GO EXEC sp_addextendedproperty 'MS_Description', N'是否可用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'排序号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'字典明细', 'SCHEMA', N'dbo', 'TABLE', N'Sys_DictionaryList' GO -- ---------------------------- -- Records of Sys_DictionaryList -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_DictionaryList] ON GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'否', N'0', N'3', NULL, N'2', NULL, N'admin', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-01-03 18:30:18.113') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'是', N'1', N'3', NULL, N'1', NULL, N'xxx', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-01-03 18:30:18.113') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'22', N'其他', N'0', N'30', NULL, N'10', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-21 16:49:43.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'23', N'成功', N'1', N'30', NULL, N'100', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-21 16:49:43.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'24', N'异常', N'2', N'30', NULL, N'50', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-21 16:49:43.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'25', N'系统', N'System', N'31', NULL, N'100', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.947') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'26', N'登陆', N'Login', N'31', NULL, N'90', NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.947') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'27', N'新建', N'Add', N'31', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'28', N'删除', N'Del', N'31', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'29', N'编辑', N'Edit', N'31', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'37', N'待审核', N'0', N'35', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'38', N'审核通过', N'1', N'35', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'39', N'审核中', N'2', N'35', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'71', N'异常', N'Exception', N'31', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.943') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'90', N'男', N'0', N'49', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'测试超级管理员', N'2018-07-23 11:10:28.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'91', N'女', N'1', N'49', NULL, NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'测试超级管理员', N'2018-07-23 11:10:28.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'96', N'未启用', N'0', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-16 18:17:47.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'97', N'已启用', N'1', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-16 18:17:47.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'98', N'已删除', N'2', N'50', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2019-08-16 18:17:47.000') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'128', N'是', N'1', N'59', N'0', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2020-11-20 23:05:48.303') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'129', N'否', N'0', N'59', N'1', NULL, NULL, N'测试超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2020-11-20 23:05:48.303') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'刷新Token', N'ReplaceToeken', N'31', NULL, N'110', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2022-04-04 13:21:54.937') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'145', N'Info', N'3', N'30', NULL, NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'423', N'是', N'1', N'67', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'424', N'否', N'0', N'67', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'435', N'审核未通过', N'3', N'35', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-05-08 01:05:44.193') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'436', N'get', N'get', N'70', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'437', N'post', N'post', N'70', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'438', N'正常', N'0', N'71', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'439', N'暂停', N'1', N'71', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'442', N'驳回', N'4', N'35', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'443', N'禁用', N'DisEnable', N'73', N'1', N'1', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'开发', N'2023-07-14 14:17:01.037') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'444', N'启用', N'Enable', N'73', N'1', N'0', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'开发', N'2023-07-14 14:17:01.017') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'449', N'信息', N'Info', N'75', N'0', N'1', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'450', N'成功', N'Sucess', N'75', N'0', N'2', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'451', N'失败', N'Error', N'75', N'0', N'3', NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'452', N'1', N'1', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'453', N'2', N'2', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'454', N'3', N'3', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'455', N'4', N'4', N'80', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', N'超级管理员', N'2023-12-12 10:28:05.550') GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'456', N'未审核', N'OrderState_Unaudited', N'84', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO INSERT INTO [dbo].[Sys_DictionaryList] ([DicListId], [DicName], [DicValue], [DicId], [Enable], [OrderNo], [Remark], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'457', N'已审核', N'OrderState_Audited', N'84', N'0', NULL, NULL, N'超级管理员', N'2024-10-21 10:17:36.330', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_DictionaryList] OFF GO -- ---------------------------- -- Table structure for Sys_Log -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Log]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Log] GO CREATE TABLE [dbo].[Sys_Log] ( [Id] int IDENTITY(1,1) NOT NULL, [BeginDate] datetime NULL, [ElapsedTime] int NULL, [EndDate] datetime NULL, [RequestParam] varchar(max) COLLATE Chinese_PRC_CI_AS NULL, [ResponseParam] varchar(max) COLLATE Chinese_PRC_CI_AS NULL, [Success] int NULL, [Url] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [UserIP] varchar(20) COLLATE Chinese_PRC_CI_AS NULL, [UserName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [UserId] int NULL ) GO ALTER TABLE [dbo].[Sys_Log] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Id' GO EXEC sp_addextendedproperty 'MS_Description', N'开始时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'BeginDate' GO EXEC sp_addextendedproperty 'MS_Description', N'时长', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'ElapsedTime' GO EXEC sp_addextendedproperty 'MS_Description', N'结束时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'EndDate' GO EXEC sp_addextendedproperty 'MS_Description', N'请求参数', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'RequestParam' GO EXEC sp_addextendedproperty 'MS_Description', N'响应参数', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'ResponseParam' GO EXEC sp_addextendedproperty 'MS_Description', N'响应状态', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Success' GO EXEC sp_addextendedproperty 'MS_Description', N'请求地址', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'Url' GO EXEC sp_addextendedproperty 'MS_Description', N'用户IP', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'UserIP' GO EXEC sp_addextendedproperty 'MS_Description', N'用户名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'UserName' GO EXEC sp_addextendedproperty 'MS_Description', N'用户主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Log', 'COLUMN', N'UserId' GO -- ---------------------------- -- Records of Sys_Log -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Log] ON GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1', N'2024-10-22 09:13:53.610', N'1114', N'2024-10-22 09:13:54.723', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'2', N'2024-10-22 09:13:54.900', N'495', N'2024-10-22 09:13:55.397', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'3', N'2024-10-22 09:14:10.770', N'11', N'2024-10-22 09:14:10.783', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'4', N'2024-10-22 09:14:10.860', N'11', N'2024-10-22 09:14:10.870', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'5', N'2024-10-22 09:16:50.370', N'47', N'2024-10-22 09:16:50.420', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'6', N'2024-10-22 09:16:50.587', N'62', N'2024-10-22 09:16:50.647', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'7', N'2024-10-22 09:16:55.757', N'25', N'2024-10-22 09:16:55.780', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"id\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":175,"rows":[{"id":175,"deviceId":3,"deviceChildCode":"111","deviceProDataBlock":"DB80","deviceProOffset":500.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"IsOccupied","deviceProParamType":"IsOccupied","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":174,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":984.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":173,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":980.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":172,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":952.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":171,"deviceId":3,"deviceChildCode":"120","deviceProDataBlock":"DB90","deviceProOffset":950.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":170,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":934.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":169,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":930.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":168,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":902.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":167,"deviceId":3,"deviceChildCode":"119","deviceProDataBlock":"DB90","deviceProOffset":900.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":166,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":884.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":165,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":880.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":164,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":852.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":163,"deviceId":3,"deviceChildCode":"118","deviceProDataBlock":"DB90","deviceProOffset":850.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":162,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":834.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":161,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":830.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":160,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":802.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":159,"deviceId":3,"deviceChildCode":"117","deviceProDataBlock":"DB90","deviceProOffset":800.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":158,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":784.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":157,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":780.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":156,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":752.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":155,"deviceId":3,"deviceChildCode":"116","deviceProDataBlock":"DB90","deviceProOffset":750.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":154,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":734.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":153,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":730.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":152,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":702.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":151,"deviceId":3,"deviceChildCode":"115","deviceProDataBlock":"DB90","deviceProOffset":700.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":150,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":684.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":149,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":680.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTargetAddress","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":148,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":652.0,"deviceProDataType":"string","deviceProDataLength":25,"deviceProParamName":"WriteConveyorLineBarcode","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":147,"deviceId":3,"deviceChildCode":"114","deviceProDataBlock":"DB90","deviceProOffset":650.0,"deviceProDataType":"w","deviceProDataLength":1,"deviceProParamName":"WriteInteractiveSignal","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null},{"id":146,"deviceId":3,"deviceChildCode":"113","deviceProDataBlock":"DB90","deviceProOffset":634.0,"deviceProDataType":"dint","deviceProDataLength":1,"deviceProParamName":"WriteConveyorLineTaskNum","deviceProParamType":"DeviceCommand","deviceProParamDes":"1","deviceProRemark":null,"creater":"admin","createDate":"2024-10-21 10:18:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceProtocol/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'8', N'2024-10-22 09:17:01.483', N'16', N'2024-10-22 09:17:01.497', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"name":"SC01","jobGroup":"CommonStackerCrane","assemblyName":"WIDESEAWCS_Tasks","className":"CommonStackerCraneJob","intervalSecond":1,"beginTime":null,"endTime":null,"remark":null,"creater":"1","createDate":"2024-10-21 10:18:16","modifier":null,"modifyDate":null},{"id":3,"name":"Line01","jobGroup":"CommonConveyorLine","assemblyName":"WIDESEAWCS_Tasks","className":"CommonConveyorLineJob","intervalSecond":1,"beginTime":null,"endTime":null,"remark":null,"creater":"1","createDate":"2024-10-21 10:18:16","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DispatchInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'9', N'2024-10-22 09:17:06.250', N'22', N'2024-10-22 09:17:06.270', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":20,"rows":[{"id":1,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneStatus","protocolDetailType":"Normal","protocalDetailValue":"1","protocolDetailDes":"设备状态(1:正常)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":2,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneStatus","protocolDetailType":"Fault","protocalDetailValue":"2","protocolDetailDes":"设备状态(2:故障)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":3,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneStatus","protocolDetailType":"EmergencyStop","protocalDetailValue":"3","protocolDetailDes":"设备状态(3:急停)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":4,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"Maintenance","protocalDetailValue":"0","protocolDetailDes":"工作模式(0:维修)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":5,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"Manual","protocalDetailValue":"1","protocolDetailDes":"工作模式(1:手动","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":6,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"SemiAutomatic","protocalDetailValue":"2","protocolDetailDes":"工作模式(2:半自动)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":7,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneAutoStatus","protocolDetailType":"Automatic","protocalDetailValue":"3","protocolDetailDes":"工作模式(3:自动)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":8,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"Standby","protocalDetailValue":"0","protocolDetailDes":"作业状态(0:待机)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":9,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"PickUp","protocalDetailValue":"1","protocolDetailDes":"作业状态(1:取货中)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":10,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"PickUpCompleted","protocalDetailValue":"2","protocolDetailDes":"作业状态(2:取货完成)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":11,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"Putting","protocalDetailValue":"4","protocolDetailDes":"作业状态(4:放货中)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":12,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"PutCompleted","protocalDetailValue":"5","protocolDetailDes":"作业状态(5:放货完成)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":13,"deviceType":"CommonStackerCrane","deviceProParamName":"StackerCraneWorkStatus","protocolDetailType":"WorkCompleted","protocalDetailValue":"6","protocolDetailDes":"作业状态(6:任务完成)","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":14,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestInbound","protocalDetailValue":"1","protocolDetailDes":"1","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":15,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestInNextAddress","protocalDetailValue":"2","protocolDetailDes":"2","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":32,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"ConveyorLineInFinish","protocalDetailValue":"3","protocolDetailDes":"3","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":34,"deviceType":"CommonConveyorLine","deviceProParamName":"IsOccupied","protocolDetailType":"IsOccupied","protocalDetailValue":"0","protocolDetailDes":"0","remark":null,"creater":"1","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":35,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestOutbound","protocalDetailValue":"4","protocolDetailDes":"4","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":36,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"RequestOutNextAddress","protocalDetailValue":"5","protocolDetailDes":"5","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null},{"id":37,"deviceType":"CommonConveyorLine","deviceProParamName":"InteractiveSignal","protocolDetailType":"ConveyorLineOutFinish","protocalDetailValue":"6","protocolDetailDes":"6","remark":null,"creater":"admin","createDate":"2024-10-21 10:18:14","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceProtocolDetail/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'10', N'2024-10-22 13:35:52.117', N'1247', N'2024-10-22 13:35:53.363', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"3e20442e-7f2f-471e-b3b5-e9ddc9245d9f\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTcyOTU3NTM1MyIsIm5iZiI6IjE3Mjk1NzUzNTMiLCJleHAiOiIxNzI5NTgyNTUzIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.68BSxRqyPDtO3M9pewWJ9oB5-7bI5zygiEKPF1m3c-Y","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'11', N'2024-10-22 13:35:53.473', N'146', N'2024-10-22 13:35:53.620', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'12', N'2024-10-22 13:35:55.963', N'354', N'2024-10-22 13:35:56.317', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'13', N'2024-10-22 13:36:24.250', N'19', N'2024-10-22 13:36:24.270', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Add","Previous","Next","Delete","Update","Import","Export"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'14', N'2024-10-22 13:36:24.373', N'20', N'2024-10-22 13:36:24.393', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'15', N'2024-10-22 13:38:22.693', N'13', N'2024-10-22 13:38:22.707', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'16', N'2024-10-22 13:38:23.143', N'4', N'2024-10-22 13:38:23.147', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'17', N'2024-10-22 13:38:23.353', N'3', N'2024-10-22 13:38:23.357', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'18', N'2024-10-22 13:38:23.550', N'4', N'2024-10-22 13:38:23.553', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'19', N'2024-10-22 13:38:24.263', N'3', N'2024-10-22 13:38:24.267', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"createDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"id":1,"deviceCode":"SC01","deviceName":"1号堆垛机","deviceType":"CommonStackerCrane","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":102,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:10:49"},{"id":3,"deviceCode":"1002","deviceName":"输送线","deviceType":"CommonConveyorLine","deviceStatus":"0","deviceIp":"127.0.0.1","devicePort":103,"devicePlcType":"SiemensS7","deviceRemark":"1","protocolList":null,"creater":"1","createDate":"2024-10-21 10:18:08","modifier":"admin","modifyDate":"2024-10-21 14:11:03"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'20', N'2024-11-11 14:29:57.683', N'291', N'2024-11-11 14:29:57.973', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTMwNjU5NyIsIm5iZiI6IjE3MzEzMDY1OTciLCJleHAiOiIxNzMxMzEzNzk3IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.XxwzchRRFqyxU9WlEdF3Jjlq0v42xTkQA_O8JqnEwRE","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'21', N'2024-11-11 14:30:01.190', N'723', N'2024-11-11 14:30:01.913', N'{"QueryString":"","BodyData":"[\"deviceType\",\"deviceStatus\",\"devicePlcType\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceTcp","value":"汇川Tcp"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'22', N'2024-11-11 14:30:06.140', N'69', N'2024-11-11 14:30:06.207', N'{"QueryString":"","BodyData":"[4]"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/DeviceInfo/del', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'23', N'2024-11-11 14:30:09.790', N'50', N'2024-11-11 14:30:09.840', N'{"QueryString":"","BodyData":"[\"deviceType\",\"jobAssembly\",\"jobClassName\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'24', N'2024-11-11 14:30:25.090', N'86', N'2024-11-11 14:30:25.177', N'{"QueryString":"","BodyData":"{\"mainData\":{\"name\":\"Log\",\"jobGroup\":\"OtherDevice\",\"assemblyName\":\"WIDESEAWCS_Tasks\",\"className\":\"LogJob\",\"intervalSecond\":1,\"beginTime\":\"\",\"endTime\":\"\",\"remark\":\"\",\"id\":\"1006\"},\"detailData\":null,\"delKeys\":null}"}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/DispatchInfo/update', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'25', N'2024-11-11 14:44:07.617', N'1231', N'2024-11-11 14:44:08.847', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":3,\"PalletCode\":\"A0000082\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-001-003-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-001-003-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:44:06.3228234+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'26', N'2024-11-11 14:44:11.563', N'1221', N'2024-11-11 14:44:12.783', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceTcp","value":"汇川Tcp"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'27', N'2024-11-11 14:44:18.973', N'3220', N'2024-11-11 14:44:22.193', N'{"QueryString":"?taskNum=3","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'28', N'2024-11-11 14:44:24.210', N'104', N'2024-11-11 14:44:24.313', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'29', N'2024-11-11 14:44:41.580', N'32', N'2024-11-11 14:44:41.613', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":4,\"PalletCode\":\"A0000017\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-002-002-004-01\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-002-002-004-01\",\"NextAddress\":\"001-001-001\",\"Depth\":1,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:44:40.8925669+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'30', N'2024-11-11 14:45:06.150', N'41', N'2024-11-11 14:45:06.190', N'{"QueryString":"?taskNum=4","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/StackCraneTaskCompleted', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'31', N'2024-11-11 14:51:06.910', N'645', N'2024-11-11 14:51:07.553', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":5,\"PalletCode\":\"A0000015\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-001-002-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-001-002-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:51:06.0966165+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'32', N'2024-11-11 14:51:16.987', N'122', N'2024-11-11 14:51:17.110', N'{"QueryString":"?taskNum=5","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/TaskCancel', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'33', N'2024-11-11 14:53:25.977', N'821', N'2024-11-11 14:53:26.797', N'{"QueryString":"?taskNum=5","BodyData":"{}"}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【5】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/TaskExecuteDetail/GetDetailDatas', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'34', N'2024-11-11 14:54:00.737', N'183', N'2024-11-11 14:54:00.920', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":6,\"PalletCode\":\"A0000012\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-002-003-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-002-003-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T14:54:00.2584421+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'35', N'2024-11-11 14:54:08.380', N'81', N'2024-11-11 14:54:08.463', N'{"QueryString":"?taskNum=6","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/StackCraneTaskCompleted', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'36', N'2024-11-11 15:03:54.623', N'199', N'2024-11-11 15:03:54.823', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":7,\"PalletCode\":\"A0000018\",\"Roadway\":\"R01\",\"TaskType\":104,\"TaskStatus\":100,\"SourceAddress\":\"R01-001-002-004-02\",\"TargetAddress\":\"001-001-001\",\"CurrentAddress\":\"R01-001-002-004-02\",\"NextAddress\":\"001-001-001\",\"Depth\":2,\"OrderNo\":null,\"Grade\":1,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2024-11-11T15:03:54.5410077+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'37', N'2024-11-11 15:04:08.940', N'89', N'2024-11-11 15:04:09.027', N'{"QueryString":"?taskNum=7","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/StackCraneTaskCompleted', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1020', N'2024-11-12 11:42:47.760', N'236', N'2024-11-12 11:42:47.997', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTczMTM4Mjk2NyIsIm5iZiI6IjE3MzEzODI5NjciLCJleHAiOiIxNzMxMzkwMTY3IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.6Ki6g0gTQ6HGbXRSMKyxhnAOxZrBNvSwiwrWTNuqTCw","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1021', N'2024-11-12 11:42:51.860', N'573', N'2024-11-12 11:42:52.433', N'{"QueryString":"","BodyData":"[\"deviceType\",\"deviceStatus\",\"devicePlcType\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceTcp","value":"汇川Tcp"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务完成"},{"key":"320","value":"移库任务执行中"},{"key":"330","value":"移库任务取消"},{"key":"340","value":"移库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1022', N'2025-05-21 17:26:27.047', N'5022', N'2025-05-21 17:26:32.070', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAkNJREFUaIHVWduRgzAMlG7oho6umZBm0lHq0X0kcEZI1sM2ITvDhOCXvJZXwiAREQAAIsL79iuRtd9qh3RhVq6waD+jB0DEdNtPkwMwgCBOyBUm2YLuBJWERL2nxdsifUbGOV2DRutK7/6HaxDH6PVY+695iVYmepvlQV5N4SuHd9kIusUIeszz4dnv8xnqY7PpPRcuA+kwX5LjXXlEBFiUwuV1rSTVjJOIKRElic/FuxUnq7OQEaXXLOyX3UfIWcmwSFPtEubjXfCDBjVHkuX/l4iAbiRuK6+Bmqd47WxNOzYP6hliOSGaHkkovaS2jTwTjZCoaisRkaejbPSRyGkVakt/JL1Z771YSZu0TjICfRikkRxvBNM8oJxXFGt/U20AL0aFeC+k7N27Ba16YphvEbaM11iGereYlufwZxF0zaSzW8rKfj05T9kWEbeLP4uimwdxclqEmBOieVDped7JRxJeIrI9KBNOR2kNwJ68khwiOlxlPf7Mwk6km7Hs//YU6Vr2XBIjlfXAgaARZzJb33d0kaSRwreel5iWKI2vcfRDroz+aCjJkYz2EiPa8O5PW+A0QWcdmEVW8THP6SONrA1aWXeCRn1+GYna2EPPpHu0y+Qv0fo1iTn9yLWGiH7USJAmzJNGT1sAB0EjoxqH9sLJ4d2OZb3qsapA3vbLNYhnp+bLXAftuLJuHTyIZ6AWWg6uWl8ktdeMyFcLDaoH8Urf/mW0FVUN+gQ51iq3aGKmrTuKnWWYtSi8XIpS0bY1/AFLZL835GbUXQAAAABJRU5ErkJggg==","uuid":"653e05d9-d8f5-477d-8f77-26bb1a10ba21"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1023', N'2025-05-29 15:41:01.700', N'8624', N'2025-05-29 15:41:10.323', N'{"QueryString":"","BodyData":"{\n \"car_id\": 0,\n \"areaName\": \"string\",\n \"type\": 0,\n \"user\": \"string\"\n}"}', N'{"code":400,"message":"未定义申请类型[type:0]"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1024', N'2025-05-29 15:41:18.537', N'31', N'2025-05-29 15:41:18.567', N'{"QueryString":"","BodyData":"{\n \"car_id\": 0,\n \"areaName\": \"string\",\n \"type\": 1,\n \"user\": \"string\"\n}"}', N'{"code":200,"message":"success"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1025', N'2025-05-29 15:41:32.750', N'55', N'2025-05-29 15:41:32.807', N'{"QueryString":"","BodyData":"{\n \"car_id\": 0,\n \"areaName\": \"string\",\n \"type\": 1,\n \"user\": \"string\"\n}"}', N'{"code":200,"message":"success"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1026', N'2025-05-29 15:42:05.120', N'24', N'2025-05-29 15:42:05.143', N'{"QueryString":"","BodyData":"{\n \"car_id\": 0,\n \"areaName\": \"string\",\n \"type\": 1,\n \"user\": \"string\"\n}"}', N'{"code":200,"message":"success"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1027', N'2025-05-29 15:42:36.200', N'13230', N'2025-05-29 15:42:49.430', N'{"QueryString":"","BodyData":"{\n \"car_id\": 0,\n \"areaName\": \"string\",\n \"type\": 1,\n \"user\": \"string\"\n}"}', N'{"code":400,"message":"未找到输送线设备信息"}', NULL, N'http://127.0.0.1:9291/api/AGV/applyTrafficCtlArea', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1028', N'2025-06-03 16:44:08.153', N'2911', N'2025-06-03 16:44:11.067', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":4,\"PalletCode\":\"A0000062\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-001-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T16:44:00.1864351+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1029', N'2025-06-03 17:22:02.700', N'6593', N'2025-06-03 17:22:09.293', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":6,\"PalletCode\":\"A0000021\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-002-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T17:21:17.2475311+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1030', N'2025-06-03 17:25:20.357', N'6507', N'2025-06-03 17:25:26.863', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":7,\"PalletCode\":\"1\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-003-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-003-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T17:25:01.9714596+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1031', N'2025-06-03 17:28:35.777', N'7120', N'2025-06-03 17:28:42.897', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":8,\"PalletCode\":\"1111\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FLR001\",\"TargetAddress\":\"FL-001-001-004-02\",\"CurrentAddress\":\"FLR001\",\"NextAddress\":\"FL-001-001-004-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-03T17:28:20.8091327+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://localhost:9291/api/Task/ReceiveTask/', N'::1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1032', N'2025-06-12 15:08:36.107', N'5947', N'2025-06-12 15:08:42.053', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":81,\"PalletCode\":\"1111\",\"Roadway\":\"SC01_FL\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"FL-002-061-001-01\",\"TargetAddress\":\"FL-001-001-001-02\",\"CurrentAddress\":\"FL-002-061-001-01\",\"NextAddress\":\"FL-001-001-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-12T15:08:12.4997132+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://192.168.100.22:9291/api/Task/ReceiveTask/', N'192.168.100.22', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1033', N'2025-06-16 13:57:07.473', N'3272', N'2025-06-16 13:57:10.747', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAj1JREFUaIHtWU2awiAMDXOccp9Z6GEcD9Mu5j7tdXAxHxjTJIQ/v476NloKIby+JJS6EEKAN8biPZzWVbz/9SwnRtuonUMjBwDAvbuCcihWEH5SPZTRit4+7OwFgnmaaFMxJBu1tnv4VDvfjqBREx0BNQ8OLJ2OjpG+Z5M0jUkp62vl0jkXwzlbVtOYq7ungUt7HcHrsMwfoSZpKQFy7dykzrlETrzO2XZX90BObCv1sQcW7/dlXpvQyjwmApvHSmLHKUQA6ErSlMmpx6rkqo2i9allolcfewlZQjDwwrV+tL/WB4AQZF24xjxWD7YrtadxGfXQPpIP1oVLY3ZzSknammdiX3yPC6XYNk9TUZK0JGsuXKL/p3V9+C/1l2AOMTwRdw8j/G0f0jVWj7WCuaurVgBHjtZfQ1EOKjEcISVsC87f232ssdRTtbSCJajHmzPNOy0J2wqNHI0wbT1sDmqVZS9iaOIuqWoSSpVlCjEpxjlYyFm8L1bp/Dvl3BwCk4I41rlKYNkgsuOESqUpyFKJeuSjRFDJlp3uNU7rypb2xXs4b9uufecEQ0RJeHHQ3r0wufE//U2+hRBCLTnJCLMJjJinCc7bVkQQB6t6rFsRK4afSVNyuAXk1NHjbR4j+qAJI90bdpDSAPjp51brWdEwgjjH/uOh3MseuWpzW/yKfaqOXEsXfkTlWH0SFXTERWno5S+18/lwmMFTPj2PwvCPhgBtZR7L8RXyEochOWj04p9J7icHIdBXmMV7uAHRqUEsqQeiNwAAAABJRU5ErkJggg==","uuid":"714add2f-c2c6-4061-a635-488a9d36e747"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1034', N'2025-06-16 13:57:19.947', N'480', N'2025-06-16 13:57:20.430', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"714add2f-c2c6-4061-a635-488a9d36e747\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA1MzQ0MCIsIm5iZiI6IjE3NTAwNTM0NDAiLCJleHAiOiIxNzUwMDYwNjQwIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.DMNsi6agZk4nBvQlbKfLwULHgwgiPx3Cu3SB4-4UnqI","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1035', N'2025-06-16 13:57:21.990', N'243', N'2025-06-16 13:57:22.230', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1036', N'2025-06-16 13:57:33.147', N'1683', N'2025-06-16 13:57:34.827', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1037', N'2025-06-16 13:57:32.123', N'3648', N'2025-06-16 13:57:35.770', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1038', N'2025-06-16 13:58:00.510', N'1393', N'2025-06-16 13:58:01.903', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":83,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-002-062-001-01\",\"TargetAddress\":\"CP-001-001-001-02\",\"CurrentAddress\":\"CP-002-062-001-01\",\"NextAddress\":\"CP-001-001-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T13:57:48.5280157+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1039', N'2025-06-16 14:11:39.693', N'558', N'2025-06-16 14:11:40.253', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1040', N'2025-06-16 14:11:45.290', N'75', N'2025-06-16 14:11:45.363', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1041', N'2025-06-16 14:11:47.323', N'178', N'2025-06-16 14:11:47.500', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1042', N'2025-06-16 14:11:47.503', N'505', N'2025-06-16 14:11:48.007', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1043', N'2025-06-16 14:19:00.373', N'2523', N'2025-06-16 14:19:02.893', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":85,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-002-062-001-01\",\"TargetAddress\":\"CP-001-001-002-02\",\"CurrentAddress\":\"CP-002-062-001-01\",\"NextAddress\":\"CP-001-001-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T14:18:32.0174605+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1044', N'2025-06-16 14:20:02.230', N'561', N'2025-06-16 14:20:02.793', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1045', N'2025-06-16 14:20:12.920', N'16741', N'2025-06-16 14:20:29.663', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1046', N'2025-06-16 14:20:50.183', N'960', N'2025-06-16 14:20:51.143', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1047', N'2025-06-16 14:21:00.903', N'552', N'2025-06-16 14:21:01.457', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1048', N'2025-06-16 14:21:08.590', N'625', N'2025-06-16 14:21:09.213', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1049', N'2025-06-16 14:21:36.560', N'498', N'2025-06-16 14:21:37.057', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1050', N'2025-06-16 14:21:43.133', N'15475', N'2025-06-16 14:21:58.607', N'{"QueryString":"?taskNum=83","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【83】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1051', N'2025-06-16 14:27:52.263', N'547', N'2025-06-16 14:27:52.810', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1052', N'2025-06-16 15:03:26.557', N'3506', N'2025-06-16 15:03:30.063', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1053', N'2025-06-16 15:03:47.983', N'218', N'2025-06-16 15:03:48.200', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null},{"taskId":14,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1054', N'2025-06-16 15:03:53.073', N'19460', N'2025-06-16 15:04:12.530', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1055', N'2025-06-16 15:50:56.070', N'31288', N'2025-06-16 15:51:27.360', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1056', N'2025-06-16 15:51:55.660', N'503', N'2025-06-16 15:51:56.163', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1057', N'2025-06-16 15:51:58.200', N'1281', N'2025-06-16 15:51:59.480', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA2MDMxOSIsIm5iZiI6IjE3NTAwNjAzMTkiLCJleHAiOiIxNzUwMDY3NTE5IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.vu2KEQnd2VAj_YR7MUx3JUBxJgbsfRRW1y-T9KiAJZ4","devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/replaceToken', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1058', N'2025-06-16 15:52:02.247', N'292', N'2025-06-16 15:52:02.540', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1059', N'2025-06-16 15:54:08.870', N'5118', N'2025-06-16 15:54:13.987', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【83】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1060', N'2025-06-16 15:54:42.450', N'540', N'2025-06-16 15:54:42.990', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【83】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1061', N'2025-06-16 15:54:55.167', N'383', N'2025-06-16 15:54:55.550', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1062', N'2025-06-16 15:55:06.763', N'729', N'2025-06-16 15:55:07.490', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":false,"code":0,"message":"未找到该任务信息,任务号:【83】","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1063', N'2025-06-16 15:55:00.277', N'8974', N'2025-06-16 15:55:09.250', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1064', N'2025-06-16 15:55:20.027', N'8068', N'2025-06-16 15:55:28.093', N'{"QueryString":"?taskNum=85","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【85】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1065', N'2025-06-16 15:56:01.980', N'420', N'2025-06-16 15:56:02.400', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":85,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1066', N'2025-06-16 16:13:44.360', N'3002', N'2025-06-16 16:13:47.363', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1067', N'2025-06-16 16:14:50.820', N'39409', N'2025-06-16 16:15:30.230', N'{"QueryString":"?taskNum=83","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【83】,异常信息:由于目标计算机积极拒绝,无法连接。 [::ffff:127.0.0.1]:9290 (127.0.0.1:9290)","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1068', N'2025-06-16 16:25:40.087', N'3004', N'2025-06-16 16:25:43.090', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1069', N'2025-06-16 16:26:07.017', N'14035', N'2025-06-16 16:26:21.050', N'{"QueryString":"?taskNum=83","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【83】,异常信息:由于目标计算机积极拒绝,无法连接。 [::ffff:127.0.0.1]:9290 (127.0.0.1:9290)","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1070', N'2025-06-16 16:26:51.150', N'299', N'2025-06-16 16:26:51.447', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1071', N'2025-06-16 16:27:03.863', N'721', N'2025-06-16 16:27:04.583', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1072', N'2025-06-16 16:27:04.583', N'249', N'2025-06-16 16:27:04.833', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":9,"rows":[{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1073', N'2025-06-16 16:27:24.730', N'241', N'2025-06-16 16:27:24.970', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1074', N'2025-06-16 16:27:43.007', N'264', N'2025-06-16 16:27:43.270', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":15,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1075', N'2025-06-16 16:28:30.783', N'1751', N'2025-06-16 16:28:32.537', N'{"QueryString":"?taskNum=83","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1076', N'2025-06-16 16:29:23.147', N'317', N'2025-06-16 16:29:23.463', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1077', N'2025-06-16 16:29:24.160', N'292', N'2025-06-16 16:29:24.450', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1078', N'2025-06-16 16:29:27.203', N'369', N'2025-06-16 16:29:27.573', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":10,"rows":[{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1079', N'2025-06-16 16:30:16.163', N'267', N'2025-06-16 16:30:16.430', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":10,"rows":[{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1080', N'2025-06-16 16:39:30.197', N'1816', N'2025-06-16 16:39:32.013', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":86,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-001-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:39:20.7566581+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1081', N'2025-06-16 16:41:31.023', N'367', N'2025-06-16 16:41:31.390', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1082', N'2025-06-16 16:42:25.067', N'1086', N'2025-06-16 16:42:26.153', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1083', N'2025-06-16 16:42:00.143', N'28339', N'2025-06-16 16:42:28.483', N'{"QueryString":"?taskNum=86","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【86】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1084', N'2025-06-16 16:42:55.827', N'3357', N'2025-06-16 16:42:59.183', N'{"QueryString":"?taskNum=86","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【86】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1085', N'2025-06-16 16:43:13.233', N'450', N'2025-06-16 16:43:13.687', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1086', N'2025-06-16 16:43:51.000', N'392', N'2025-06-16 16:43:51.390', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1087', N'2025-06-16 16:45:13.220', N'2247', N'2025-06-16 16:45:15.467', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":87,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-001-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:45:07.3797958+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1088', N'2025-06-16 16:45:32.313', N'531', N'2025-06-16 16:45:32.843', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":17,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1089', N'2025-06-16 16:47:39.047', N'548', N'2025-06-16 16:47:39.593', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":17,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1090', N'2025-06-16 16:49:16.397', N'2328', N'2025-06-16 16:49:18.727', N'{"QueryString":"?taskNum=87","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1091', N'2025-06-16 16:50:58.263', N'1120', N'2025-06-16 16:50:59.380', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1092', N'2025-06-16 16:51:17.077', N'599', N'2025-06-16 16:51:17.673', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1093', N'2025-06-16 16:51:20.630', N'481', N'2025-06-16 16:51:21.113', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1094', N'2025-06-16 16:51:26.257', N'611', N'2025-06-16 16:51:26.867', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":11,"rows":[{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1095', N'2025-06-16 16:52:19.437', N'2541', N'2025-06-16 16:52:21.977', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":88,\"PalletCode\":\"5\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-002-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:52:08.4476875+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1096', N'2025-06-16 16:52:40.083', N'674', N'2025-06-16 16:52:40.760', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":18,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1097', N'2025-06-16 16:54:18.977', N'4263', N'2025-06-16 16:54:23.240', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":18,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1098', N'2025-06-16 16:54:35.300', N'2273', N'2025-06-16 16:54:37.573', N'{"QueryString":"?taskNum=88","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1099', N'2025-06-16 16:54:46.577', N'313', N'2025-06-16 16:54:46.890', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1100', N'2025-06-16 16:54:55.247', N'189', N'2025-06-16 16:54:55.437', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1101', N'2025-06-16 16:56:39.443', N'1869', N'2025-06-16 16:56:41.310', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":89,\"PalletCode\":\"6\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-002-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-002-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T16:56:32.6365692+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1102', N'2025-06-16 16:57:30.507', N'222', N'2025-06-16 16:57:30.730', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1103', N'2025-06-16 16:57:32.553', N'246', N'2025-06-16 16:57:32.800', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1104', N'2025-06-16 16:57:38.673', N'37074', N'2025-06-16 16:58:15.750', N'{"QueryString":"?taskNum=89","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【89】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1105', N'2025-06-16 16:58:28.993', N'245', N'2025-06-16 16:58:29.240', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1106', N'2025-06-16 16:59:42.487', N'233', N'2025-06-16 16:59:42.720', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":2,"rows":[{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1107', N'2025-06-16 17:00:17.803', N'1510', N'2025-06-16 17:00:19.313', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":90,\"PalletCode\":\"7\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-003-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-003-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:00:09.8153953+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1108', N'2025-06-16 17:00:29.080', N'288', N'2025-06-16 17:00:29.367', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1109', N'2025-06-16 17:00:43.430', N'314', N'2025-06-16 17:00:43.747', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1110', N'2025-06-16 17:00:33.180', N'24161', N'2025-06-16 17:00:57.340', N'{"QueryString":"?taskNum=90","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【90】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1111', N'2025-06-16 17:02:38.977', N'282', N'2025-06-16 17:02:39.260', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1112', N'2025-06-16 17:03:25.737', N'1842', N'2025-06-16 17:03:27.580', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":91,\"PalletCode\":\"8\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-003-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-003-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:03:20.1450592+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1113', N'2025-06-16 17:03:44.760', N'315', N'2025-06-16 17:03:45.077', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1114', N'2025-06-16 17:05:03.123', N'2913', N'2025-06-16 17:05:06.037', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1115', N'2025-06-16 17:05:08.730', N'292', N'2025-06-16 17:05:09.023', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1116', N'2025-06-16 17:05:17.450', N'252', N'2025-06-16 17:05:17.700', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1117', N'2025-06-16 17:06:06.903', N'2415', N'2025-06-16 17:06:09.320', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1118', N'2025-06-16 17:06:40.640', N'1308', N'2025-06-16 17:06:41.947', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":92,\"PalletCode\":\"9\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-001-060-004-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-001-060-004-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:06:32.2997006+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1119', N'2025-06-16 17:06:56.990', N'276', N'2025-06-16 17:06:57.267', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":22,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1120', N'2025-06-16 17:07:02.097', N'17764', N'2025-06-16 17:07:19.860', N'{"QueryString":"?taskNum=92","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【92】,异常信息:The operation has timed out.","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1121', N'2025-06-16 17:07:27.050', N'258', N'2025-06-16 17:07:27.310', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1122', N'2025-06-16 17:07:33.197', N'241', N'2025-06-16 17:07:33.440', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":3206,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":"admin","modifyDate":"2025-06-16 17:07:02"},{"taskId":3205,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":"WMS","modifyDate":"2025-06-16 16:54:36"},{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1123', N'2025-06-16 17:07:42.883', N'195', N'2025-06-16 17:07:43.080', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1124', N'2025-06-16 17:25:50.713', N'962', N'2025-06-16 17:25:51.673', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1125', N'2025-06-16 17:25:54.907', N'5691', N'2025-06-16 17:26:00.597', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA2NTk2MCIsIm5iZiI6IjE3NTAwNjU5NjAiLCJleHAiOiIxNzUwMDczMTYwIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.iUTVE0BoKtvZAk7tS3zEzdHB7F8zIKgqOqwRTetu8tM","devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/replaceToken', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1126', N'2025-06-16 17:29:59.143', N'2118', N'2025-06-16 17:30:01.260', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":93,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-002-062-001-01\",\"TargetAddress\":\"CP-002-001-001-01\",\"CurrentAddress\":\"CP-002-062-001-01\",\"NextAddress\":\"CP-002-001-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:29:53.6221591+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1127', N'2025-06-16 17:30:34.197', N'678', N'2025-06-16 17:30:34.873', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":23,"taskNum":93,"palletCode":"10","roadway":"SC01_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-001-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:30:00","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1128', N'2025-06-16 17:39:58.863', N'4439', N'2025-06-16 17:40:03.300', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":95,\"PalletCode\":\"12\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-002-060-004-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-002-060-004-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:39:53.0894969+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1129', N'2025-06-16 17:41:14.340', N'1751', N'2025-06-16 17:41:16.090', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":96,\"PalletCode\":\"13\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-004-060-001-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-004-060-001-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:41:04.1287565+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1130', N'2025-06-16 17:46:39.050', N'808', N'2025-06-16 17:46:39.857', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":25,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1131', N'2025-06-16 17:48:56.040', N'525', N'2025-06-16 17:48:56.567', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":25,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1132', N'2025-06-16 17:49:00.680', N'19582', N'2025-06-16 17:49:20.260', N'{"QueryString":"?taskNum=95","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1133', N'2025-06-16 17:49:22.680', N'338', N'2025-06-16 17:49:23.017', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1134', N'2025-06-16 17:49:26.780', N'345', N'2025-06-16 17:49:27.127', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":26,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1135', N'2025-06-16 17:49:30.860', N'17017', N'2025-06-16 17:49:47.880', N'{"QueryString":"?taskNum=96","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1136', N'2025-06-16 17:49:49.857', N'379', N'2025-06-16 17:49:50.237', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1137', N'2025-06-16 17:49:52.923', N'360', N'2025-06-16 17:49:53.283', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1138', N'2025-06-16 17:51:01.290', N'1775', N'2025-06-16 17:51:03.063', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":97,\"PalletCode\":\"15\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-003-060-001-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-003-060-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:50:54.2383909+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1139', N'2025-06-16 17:52:04.623', N'379', N'2025-06-16 17:52:05.003', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":5,"rows":[{"taskId":27,"taskNum":97,"palletCode":"15","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:51:02","modifier":null,"modifyDate":null},{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1140', N'2025-06-16 17:52:31.807', N'2397', N'2025-06-16 17:52:34.207', N'{"QueryString":"?taskNum=97","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1141', N'2025-06-16 17:52:40.200', N'355', N'2025-06-16 17:52:40.553', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1142', N'2025-06-16 17:53:00.630', N'398', N'2025-06-16 17:53:01.027', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1143', N'2025-06-16 17:53:36.467', N'2379', N'2025-06-16 17:53:38.847', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":98,\"PalletCode\":\"14\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-004-060-002-02\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-004-060-002-02\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:53:27.8422505+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1144', N'2025-06-16 17:54:56.440', N'1811', N'2025-06-16 17:54:58.250', N'{"QueryString":"?taskNum=98","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1145', N'2025-06-16 17:55:03.240', N'396', N'2025-06-16 17:55:03.637', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1146', N'2025-06-16 17:55:07.347', N'566', N'2025-06-16 17:55:07.910', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":19,"rows":[{"taskId":3212,"taskNum":98,"palletCode":"14","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:53:37","modifier":"WMS","modifyDate":"2025-06-16 17:54:57"},{"taskId":3211,"taskNum":97,"palletCode":"15","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:51:02","modifier":"WMS","modifyDate":"2025-06-16 17:52:33"},{"taskId":3210,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":"admin","modifyDate":"2025-06-16 17:49:31"},{"taskId":3209,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":"admin","modifyDate":"2025-06-16 17:49:01"},{"taskId":3208,"taskNum":94,"palletCode":"11","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-002-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:36:27","modifier":"admin","modifyDate":"2025-06-16 17:37:17"},{"taskId":3207,"taskNum":93,"palletCode":"10","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-001-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:30:00","modifier":"admin","modifyDate":"2025-06-16 17:31:32"},{"taskId":3206,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":"admin","modifyDate":"2025-06-16 17:07:02"},{"taskId":3205,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":"WMS","modifyDate":"2025-06-16 16:54:36"},{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1147', N'2025-06-16 17:55:30.937', N'2393', N'2025-06-16 17:55:33.330', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":99,\"PalletCode\":\"16\",\"Roadway\":\"SC02_CP\",\"TaskType\":200,\"TaskStatus\":200,\"SourceAddress\":\"CP-003-061-001-01\",\"TargetAddress\":\"CP-003-060-002-01\",\"CurrentAddress\":\"CP-003-061-001-01\",\"NextAddress\":\"CP-003-060-002-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"PDA\",\"CreateDate\":\"2025-06-16T17:55:24.0442283+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1148', N'2025-06-16 17:55:55.597', N'1918', N'2025-06-16 17:55:57.517', N'{"QueryString":"?taskNum=99","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1149', N'2025-06-16 17:59:54.597', N'488', N'2025-06-16 17:59:55.083', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":4,"rows":[{"taskId":21,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":null,"modifyDate":null},{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1150', N'2025-06-16 17:59:58.187', N'18186', N'2025-06-16 18:00:16.373', N'{"QueryString":"?taskNum=91","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【91】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1151', N'2025-06-16 18:00:20.600', N'526', N'2025-06-16 18:00:21.127', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1152', N'2025-06-16 18:00:22.200', N'467', N'2025-06-16 18:00:22.667', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":3,"rows":[{"taskId":20,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":null,"modifyDate":null},{"taskId":19,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":null,"modifyDate":null},{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1153', N'2025-06-16 18:00:44.137', N'3618', N'2025-06-16 18:00:47.757', N'{"QueryString":"?taskNum=90","BodyData":"数据处理中..."}', N'{"status":false,"code":0,"message":"任务完成异常,任务号:【90】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1154', N'2025-06-16 18:01:53.007', N'5930', N'2025-06-16 18:01:58.937', N'{"QueryString":"?taskNum=89","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":"任务完成异常,任务号:【89】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1155', N'2025-06-16 18:02:02.853', N'498', N'2025-06-16 18:02:03.350', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1156', N'2025-06-16 18:02:04.377', N'336', N'2025-06-16 18:02:04.713', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":1,"rows":[{"taskId":16,"taskNum":86,"palletCode":"3","roadway":"SC02_CP","taskType":200,"taskStatus":200,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:39:31","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1157', N'2025-06-16 18:02:09.497', N'218', N'2025-06-16 18:02:09.713', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":23,"rows":[{"taskId":3213,"taskNum":99,"palletCode":"16","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:55:32","modifier":"WMS","modifyDate":"2025-06-16 17:55:56"},{"taskId":3212,"taskNum":98,"palletCode":"14","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:53:37","modifier":"WMS","modifyDate":"2025-06-16 17:54:57"},{"taskId":3211,"taskNum":97,"palletCode":"15","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-003-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-003-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:51:02","modifier":"WMS","modifyDate":"2025-06-16 17:52:33"},{"taskId":3210,"taskNum":96,"palletCode":"13","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-004-060-001-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-004-060-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:41:15","modifier":"admin","modifyDate":"2025-06-16 17:49:31"},{"taskId":3209,"taskNum":95,"palletCode":"12","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-004-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-004-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:40:02","modifier":"admin","modifyDate":"2025-06-16 17:49:01"},{"taskId":3208,"taskNum":94,"palletCode":"11","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-002-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:36:27","modifier":"admin","modifyDate":"2025-06-16 17:37:17"},{"taskId":3207,"taskNum":93,"palletCode":"10","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-002-001-001-01","currentAddress":"CP-002-062-001-01","nextAddress":"CP-002-001-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:30:00","modifier":"admin","modifyDate":"2025-06-16 17:31:32"},{"taskId":3206,"taskNum":92,"palletCode":"9","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-004-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-004-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:06:41","modifier":"admin","modifyDate":"2025-06-16 17:07:02"},{"taskId":3214,"taskNum":91,"palletCode":"8","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-003-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-003-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:03:26","modifier":"admin","modifyDate":"2025-06-16 17:59:59"},{"taskId":3215,"taskNum":90,"palletCode":"7","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-003-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-003-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 17:00:18","modifier":"admin","modifyDate":"2025-06-16 18:00:45"},{"taskId":3216,"taskNum":89,"palletCode":"6","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-002-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-002-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:56:40","modifier":"admin","modifyDate":"2025-06-16 18:01:56"},{"taskId":3205,"taskNum":88,"palletCode":"5","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-001-060-002-02","currentAddress":"CP-003-061-001-01","nextAddress":"CP-001-060-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:52:20","modifier":"WMS","modifyDate":"2025-06-16 16:54:36"},{"taskId":3204,"taskNum":87,"palletCode":"4","roadway":"SC02_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-003-061-001-01","targetAddress":"CP-002-060-001-01","currentAddress":"CP-003-061-001-01","nextAddress":"CP-002-060-001-01","exceptionMessage":null,"depth":1,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 16:45:14","modifier":"WMS","modifyDate":"2025-06-16 16:49:17"},{"taskId":3203,"taskNum":83,"palletCode":"2","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-002-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-002-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 14:19:01","modifier":"WMS","modifyDate":"2025-06-16 16:28:31"},{"taskId":3202,"taskNum":83,"palletCode":"1","roadway":"SC01_CP","taskType":200,"taskStatus":290,"sourceAddress":"CP-002-062-001-01","targetAddress":"CP-001-001-001-02","currentAddress":"CP-002-062-001-01","nextAddress":"CP-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 13:58:01","modifier":"WMS","modifyDate":"2025-06-16 15:51:03"},{"taskId":3201,"taskNum":8,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-060-001-02","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:59:48","remark":null,"creater":"System","createDate":"2025-06-12 15:09:44","modifier":"WMS","modifyDate":"2025-06-12 17:00:54"},{"taskId":3200,"taskNum":7,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-031-001-01","targetAddress":"FL-004-060-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:58:10","remark":null,"creater":"System","createDate":"2025-06-12 15:09:43","modifier":"WMS","modifyDate":"2025-06-12 16:59:47"},{"taskId":3199,"taskNum":6,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-002-041-001-01","targetAddress":"FL-003-031-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:57:07","remark":null,"creater":"System","createDate":"2025-06-12 15:09:42","modifier":"WMS","modifyDate":"2025-06-12 16:58:09"},{"taskId":3198,"taskNum":5,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-004-058-001-02","targetAddress":"FL-002-041-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:54:44","remark":null,"creater":"System","createDate":"2025-06-12 15:09:41","modifier":"WMS","modifyDate":"2025-06-12 16:56:18"},{"taskId":3195,"taskNum":2,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-003-060-001-01","targetAddress":"FL-001-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:54:09","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 15:56:04"},{"taskId":3196,"taskNum":3,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-058-001-02","targetAddress":"FL-001-051-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":"2025-06-12 16:30:03","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:31:17"},{"taskId":3197,"taskNum":4,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-051-001-02","targetAddress":"FL-004-058-001-02","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 16:43:41","remark":null,"creater":"System","createDate":"2025-06-12 15:09:40","modifier":"WMS","modifyDate":"2025-06-12 16:54:32"},{"taskId":3148,"taskNum":1,"palletCode":"1111","roadway":"SC01_FL","taskType":300,"taskStatus":320,"sourceAddress":"FL-001-050-001-01","targetAddress":"FL-003-060-001-01","currentAddress":"FL-002-061-001-01","nextAddress":"FL-001-001-001-02","exceptionMessage":null,"depth":2,"grade":1,"wmsId":0,"dispatchertime":"2025-06-12 15:27:38","remark":null,"creater":"System","createDate":"2025-06-12 15:08:40","modifier":"WMS","modifyDate":"2025-06-12 15:33:15"}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task_Hty/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1158', N'2025-06-16 18:02:17.160', N'1679', N'2025-06-16 18:02:18.837', N'{"QueryString":"?taskNum=86","BodyData":"数据处理中..."}', N'{"status":true,"code":0,"message":"任务完成异常,任务号:【86】,异常信息:未找到任务信息","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1159', N'2025-06-16 18:02:20.757', N'296', N'2025-06-16 18:02:21.053', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1160', N'2025-06-16 18:02:21.053', N'244', N'2025-06-16 18:02:21.300', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1161', N'2025-06-16 18:02:23.030', N'349', N'2025-06-16 18:02:23.377', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1162', N'2025-06-16 18:10:07.143', N'341', N'2025-06-16 18:10:07.487', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1163', N'2025-06-16 21:40:54.480', N'42456', N'2025-06-16 21:41:36.937', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":103,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0303332+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":100,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0342962+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":104,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0370424+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":101,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0399879+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":105,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0419951+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":102,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"A04\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"A04\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:40:52.0438301+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1164', N'2025-06-16 21:44:20.150', N'2131', N'2025-06-16 21:44:22.280', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":109,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1091615+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":106,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.111438+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":110,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1135949+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":107,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1154685+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":111,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1166929+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":108,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"A04\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"A04\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:44:17.1179025+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":false,"code":0,"message":"有重复任务","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1165', N'2025-06-16 21:57:44.387', N'26633', N'2025-06-16 21:58:11.020', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":115,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.370193+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":112,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3742335+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":116,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3770143+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":113,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"A01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"A01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3800713+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":117,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3822595+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":114,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"A04\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"A04\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T21:57:43.3839388+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1166', N'2025-06-16 21:58:28.300', N'559', N'2025-06-16 21:58:28.860', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"message":"授权未通过","status":false,"code":401}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1167', N'2025-06-16 21:58:31.407', N'16256', N'2025-06-16 21:58:47.663', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAdVJREFUaIHlWdGOxCAI1I3/3fbLuZdzYysKI6i93CSb3XZxQBxR20CTEc6g/l+y3YFIRBR+Ea8Y6PheumIm90x8youyA/GKt28r3pYcrl/svVJB2ehtndmJz/OGNTnxitVIeKnQglYMUmz/XkG9/sYr+isIhXetQ3xKoINqBUlkdND3Xv4tJbW0lyAFnzkQpXOcPdXcFqteghBibXuOIweFjKx3DC0kLSFCWnJwW4dR3pLHokbEX1WDNJgx0lzb/BkBWtNa9klj9EQv6NHltMeLTD+tL63v1DIaXVXQzkjwUsIoqhrUAiJ1rggjPNqVTGrnMVi3GoTKWGPPJceiTiQ5LQ4E7BSz1IsSLeVYC29PoRZ+DuophgCdUk8gtVB7Kn/+p41LNcWQVcuanLeh+TxIg2pb3tkgSqO68iwG7cTzUcO6B5J2z9riavEv1abcHjnHpZEgueCkwLzQ6pymw9kGUVBaIW2vWuRxSEUhPu5QExUncktCekv2lod53KuOna9fwhkq/9I1x+EWz1Cjl7y/8ohD4ojhDPSUsif+/DPuGVm32nu3t3BOnSuzp+KKxKk8aAJZUZe8faj6NcMxGsROiCviojhcsHLK5t+wR0uQK5Zlb64fDf7eF+1N0W4AAAAASUVORK5CYII=","uuid":"faa5065c-ab73-402c-b7d2-5610d92e3bd0"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1168', N'2025-06-16 21:58:50.487', N'104', N'2025-06-16 21:58:50.590', N'{"QueryString":"","BodyData":""}', N'{"img":"iVBORw0KGgoAAAANSUhEUgAAAEgAAAAgCAYAAACxSj5wAAAABHNCSVQICAgIfAhkiAAAAi5JREFUaIHdWV2SwiAMDh1Ps72PD/Uwbg+zPux96HXYh504KRKSQNDqN+NMqySB/HwEhKQAfINqjGacVb9WZ6ttSWeTVu/JjFicl82QUkrwAQhrgHS1L0WSMzuodSLviskqwDknrKF7MhqENTzYGmq7tU5fwRsS6Jx6Ng0KtsQwKlI5Ycl9aumd8CFfID7f5nknsMS4e9c4BXXksiW79PuaDW1A8vKzBrFK0rlzLufNZIDKX84b/Px+AUDZUfcJMXzSmp2So3EM+1vuoNwpFLWFcTqoTC2TcKI1mKPfmT0AZBcbsRNoHVpCuqYuTqutx7LWu4OQaEu4nDe1oTwDcUwtMzldLWM04yyOn/IaXWJ8iDxyR80Q6qmROOdoHEc/kj1qU/quByxJS7uXycgaVARNx5egaTk4tPBXuqb/EkPFPd6nsvT5Ns8m53CwOqe3J0P5CV/oVifxBZ1QqaEs6eF6oBHwJPdiiZUcZIm+taRqeih6z4EtfdCuxDhYFulVUlq0ZKGlHE+eZyiupDCjtGU2+kxn0X8vMQ3vAPBZwXXJUvcMUI5o9xlKccTQ4ASgdw4HKm/VNaKX8SR/84VZC5YYq72NFOGXXqNwF06l92dB+y/KM7DLoDxSJjJzajK16OmqbYYE5NeYnwTNeg79t8/Ia1yt7qllF/G6a5Ewkpy1uicc6NU3tNwTHxqe9ftOHIVzleZ8aA7yQg+XPaVR9MSIlqCGQziIW/QrDrI5/gAO8cuRMeSxvAAAAABJRU5ErkJggg==","uuid":"9f4db46d-02dc-4f2a-92f1-b9802ed67156"}', NULL, N'http://127.0.0.1:9291/api/User/getVierificationCode', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1169', N'2025-06-16 21:58:51.487', N'285', N'2025-06-16 21:58:51.773', N'{"QueryString":"","BodyData":"{\"userName\":\"admin\",\"password\":\"123456\",\"verificationCode\":\"1234\",\"UUID\":\"faa5065c-ab73-402c-b7d2-5610d92e3bd0\"}"}', N'{"status":true,"code":0,"message":null,"data":{"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA4MjMzMSIsIm5iZiI6IjE3NTAwODIzMzEiLCJleHAiOiIxNzUwMDg5NTMxIiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.5SUy6VaEgXF89SfFVeXtKmnlzQ5mrDX0UXVzVXC5j8c","userName":"超级管理员","img":""},"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/login', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1170', N'2025-06-16 21:58:53.557', N'143', N'2025-06-16 21:58:53.700', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1171', N'2025-06-16 21:58:59.763', N'2075', N'2025-06-16 21:59:01.837', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":36,"taskNum":115,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":37,"taskNum":112,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"A01","currentAddress":"CP-001-001-001-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":38,"taskNum":116,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":39,"taskNum":113,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"A01","currentAddress":"CP-001-001-002-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":40,"taskNum":117,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":41,"taskNum":114,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"A04","currentAddress":"CP-001-060-001-02","nextAddress":"A04","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1172', N'2025-06-16 21:58:58.617', N'7302', N'2025-06-16 21:59:05.920', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1173', N'2025-06-16 21:59:07.950', N'142', N'2025-06-16 21:59:08.093', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1174', N'2025-06-16 21:59:09.983', N'141', N'2025-06-16 21:59:10.127', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建入库任务"},{"key":"220","value":"输送线入库执行中"},{"key":"225","value":"输送线输送完成"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"297","value":"入库任务挂起"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建出库任务"},{"key":"110","value":"堆垛机出库执行中"},{"key":"115","value":"堆垛机出库完成"},{"key":"120","value":"输送线出库执行中"},{"key":"125","value":"输送线输送完成"},{"key":"190","value":"出库任务完成"},{"key":"197","value":"出库任务挂起"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1175', N'2025-06-16 21:59:10.127', N'961', N'2025-06-16 21:59:11.087', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":36,"taskNum":115,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":37,"taskNum":112,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"A01","currentAddress":"CP-001-001-001-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":38,"taskNum":116,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":39,"taskNum":113,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"A01","currentAddress":"CP-001-001-002-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":40,"taskNum":117,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":41,"taskNum":114,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"A04","currentAddress":"CP-001-060-001-02","nextAddress":"A04","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1176', N'2025-06-16 22:04:18.003', N'1336', N'2025-06-16 22:04:19.340', N'{"QueryString":"","BodyData":""}', N'[{"id":10,"name":"设备管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":12,"name":"任务管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":17,"name":"基础管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":1,"name":"用户管理","url":null,"parentId":0,"icon":"el-icon-user","enable":1,"tableName":".","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":2,"name":"用户管理","url":"/Sys_User","parentId":1,"icon":null,"enable":1,"tableName":"Sys_User","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":3,"name":"权限管理","url":"/permission","parentId":1,"icon":"ivu-icon ivu-icon-ios-boat","enable":1,"tableName":",","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":4,"name":"角色管理","url":"/Sys_Role","parentId":1,"icon":null,"enable":1,"tableName":"Sys_Role","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":18,"name":"路由配置信息","url":"/router","parentId":17,"icon":"el-icon-date","enable":1,"tableName":"Dt_Router","permission":["Search","Add","Delete","Update","ViewAllRouter","AddRouters","Import","Export"]},{"id":13,"name":"任务信息","url":"/task","parentId":12,"icon":"el-icon-date","enable":1,"tableName":"Dt_Task","permission":["Search","Export","Previous","Next","TaskHandCompleted","TaskHandCancel"]},{"id":11,"name":"设备信息","url":"/deviceInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":14,"name":"设备协议信息","url":"/deviceProtocol","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocol","permission":["Search","Delete","Export"]},{"id":15,"name":"设备协议明细信息","url":"/deviceProtocolDetail","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DeviceProtocolDetail","permission":["Search","Add","Delete","Update","Export"]},{"id":16,"name":"调度服务配置信息","url":"/dispatchInfo","parentId":10,"icon":"el-icon-date","enable":1,"tableName":"Dt_DispatchInfo","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":8,"name":"日志管理","url":"/","parentId":0,"icon":"el-icon-date","enable":1,"tableName":"xxx","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":6,"name":"菜单设置","url":"/sysmenu","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Menu","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":7,"name":"下拉框绑定设置","url":"/Sys_Dictionary","parentId":5,"icon":null,"enable":1,"tableName":"Sys_Dictionary","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":19,"name":"任务历史信息","url":"/task_hty","parentId":12,"icon":"","enable":1,"tableName":"/Task_Hty","permission":["Search"]},{"id":9,"name":"接口日志","url":"/Sys_Log/Manager","parentId":8,"icon":null,"enable":1,"tableName":"Sys_Log","permission":["Search","Add","Delete","Update","Import","Export"]},{"id":5,"name":"系统设置","url":"/","parentId":0,"icon":"el-icon-setting","enable":1,"tableName":"系统设置","permission":["Search","Add","Delete","Update","Import","Export"]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Menu/getTreeMenu', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1177', N'2025-06-16 22:04:22.077', N'1806', N'2025-06-16 22:04:23.883', N'{"QueryString":"","BodyData":"[\"taskType\",\"taskState\"]"}', N'[{"dicNo":"enable","config":"{valueField: ''Enable'',\r\ntextField: ''Enable'',\r\n containField: null,\r\n handler: null }","data":[{"key":"0","value":"否"},{"key":"1","value":"是"}]},{"dicNo":"restatus","config":"{valueField: ''Success'',\r\n textField: ''Success'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"1","value":"成功"},{"key":"2","value":"异常"},{"key":"0","value":"其他"},{"key":"3","value":"Info"}]},{"dicNo":"log","config":"{valueField: ''LogType'',\r\n textField: ''LogType'', \r\n containField: null,\r\n handler: null }\r\n","data":[{"key":"ReplaceToeken","value":"刷新Token"},{"key":"System","value":"系统"},{"key":"Login","value":"登陆"},{"key":"Add","value":"新建"},{"key":"Del","value":"删除"},{"key":"Edit","value":"编辑"},{"key":"Exception","value":"异常"}]},{"dicNo":"roles","config":"{valueField: ''Role_Id'',\r\n textField: ''RoleName'', \r\n containField: [''Role_Id'',''RoleName''],\r\n handler: null }\r\n","data":[{"key":1,"value":"超级管理员"}]},{"dicNo":"audit","config":"{\r\n valueField: ''AuditStatus'',\r\n textField: ''AuditStatus'',\r\n containField:null \r\n}","data":[{"key":"0","value":"待审核"},{"key":"1","value":"审核通过"},{"key":"2","value":"审核中"},{"key":"3","value":"审核未通过"},{"key":"4","value":"驳回"}]},{"dicNo":"gender","config":"{\r\n valueField: ''Gender'',\r\n textField: ''Gender'',\r\n containField:null \r\n}","data":[{"key":"0","value":"男"},{"key":"1","value":"女"}]},{"dicNo":"status","config":"{\r\n valueField: ''Enable'',\r\n textField: ''Enable'',\r\n containField:null \r\n}","data":[{"key":"0","value":"未启用"},{"key":"1","value":"已启用"},{"key":"2","value":"已删除"}]},{"dicNo":"isphone","config":"{\r\n valueField: ''IsRegregisterPhone'',\r\n textField: ''IsRegregisterPhone'',\r\n containField:null \r\n}","data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"tree_roles","config":null,"data":[{"id":1,"parentId":0,"key":1,"value":"超级管理员"}]},{"dicNo":"nav","config":null,"data":[{"key":"1","value":"是"},{"key":"0","value":"否"}]},{"dicNo":"请求方式","config":null,"data":[{"key":"get","value":"get"},{"key":"post","value":"post"}]},{"dicNo":"定时任务状态","config":null,"data":[{"key":"0","value":"正常"},{"key":"1","value":"暂停"}]},{"dicNo":"组织机构","config":null,"data":[]},{"dicNo":"LogState","config":null,"data":[{"key":"Error","value":"失败"},{"key":"Sucess","value":"成功"},{"key":"Info","value":"信息"}]},{"dicNo":"deviceType","config":"","data":[{"key":"CommonConveyorLine","value":"输送线"},{"key":"OtherDevice","value":"OtherDevice"},{"key":"SerialPortDevice","value":"SerialPortDevice"},{"key":"ShuttleCar","value":"穿梭车"},{"key":"CommonStackerCrane","value":"堆垛机"},{"key":"SpeStackerCrane","value":"堆垛机2"}]},{"dicNo":"devicePlcType","config":"","data":[{"key":"AllenBrandlyEtherNetCommunicator","value":"罗克韦尔(AB)EtherNet/IP(CIP)"},{"key":"InovanceAMTcp","value":"汇川Tcp--AM"},{"key":"InovanceRtuOverTcp","value":"汇川Rtu--H5U"},{"key":"InovanceTcp","value":"汇川Tcp--H5U"},{"key":"ModbusTcp","value":"ModbusTcp"},{"key":"OmronEtherNetCommunicator","value":"欧姆龙EtherNet/IP(CIP)"},{"key":"SiemensS7","value":"西门子S7"}]},{"dicNo":"jobAssembly","config":"","data":[{"key":"WIDESEAWCS_Tasks","value":"WIDESEAWCS_Tasks"}]},{"dicNo":"jobClassName","config":"","data":[{"key":"CommonConveyorLineJob","value":"CommonConveyorLineJob"},{"key":"LogJob","value":"LogJob"},{"key":"CommonStackerCraneJob","value":"CommonStackerCraneJob"}]},{"dicNo":"deviceStatus","config":"","data":[{"key":"0","value":"禁用"},{"key":"1","value":"启用"}]},{"dicNo":"taskType","config":"","data":[{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"104","value":"出空"},{"key":"105","value":"补空"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"205","value":"回空"},{"key":"300","value":"移库"},{"key":"301","value":"库内移库"},{"key":"302","value":"库外移库"},{"key":"500","value":"AGV搬运"},{"key":"200","value":"入库"},{"key":"201","value":"盘点入库"},{"key":"202","value":"分拣入库"},{"key":"203","value":"质检入库"},{"key":"204","value":"入空"},{"key":"100","value":"出库"},{"key":"101","value":"盘点出库"},{"key":"102","value":"分拣出库"},{"key":"103","value":"质检出库"},{"key":"300","value":"库内移库"},{"key":"301","value":"库外移库"}]},{"dicNo":"taskState","config":"","data":[{"key":"200","value":"新建"},{"key":"230","value":"堆垛机入库执行中"},{"key":"235","value":"堆垛机入库完成"},{"key":"290","value":"入库任务完成"},{"key":"298","value":"入库任务取消"},{"key":"299","value":"入库任务异常"},{"key":"100","value":"新建"},{"key":"130","value":"堆垛机出库执行中"},{"key":"135","value":"堆垛机出库完成"},{"key":"190","value":"出库任务完成"},{"key":"198","value":"出库任务取消"},{"key":"199","value":"出库任务异常"},{"key":"300","value":"新建移库任务"},{"key":"310","value":"移库任务执行中"},{"key":"320","value":"移库任务完成"},{"key":"398","value":"移库任务取消"},{"key":"399","value":"移库任务异常"}]},{"dicNo":"inOutType","config":"","data":[{"key":"1","value":"入库路由"},{"key":"2","value":"出库路由"}]}]', NULL, N'http://127.0.0.1:9291/api/Sys_Dictionary/GetVueDictionary', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1178', N'2025-06-16 22:04:21.060', N'2888', N'2025-06-16 22:04:23.947', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":36,"taskNum":115,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":37,"taskNum":112,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"A01","currentAddress":"CP-001-001-001-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":38,"taskNum":116,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":39,"taskNum":113,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"A01","currentAddress":"CP-001-001-002-02","nextAddress":"A01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":40,"taskNum":117,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null},{"taskId":41,"taskNum":114,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"A04","currentAddress":"CP-001-060-001-02","nextAddress":"A04","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 21:57:59","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1179', N'2025-06-16 22:05:18.713', N'394', N'2025-06-16 22:05:19.107', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1180', N'2025-06-16 22:08:31.690', N'417', N'2025-06-16 22:08:32.107', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1181', N'2025-06-16 22:08:35.800', N'392', N'2025-06-16 22:08:36.193', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1182', N'2025-06-16 22:08:44.483', N'441', N'2025-06-16 22:08:44.927', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":0,"rows":[],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1183', N'2025-06-16 22:09:08.053', N'8954', N'2025-06-16 22:09:17.007', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":121,\"PalletCode\":\"10\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-001-01\",\"TargetAddress\":\"CP-001-001-003-02\",\"CurrentAddress\":\"CP-002-001-001-01\",\"NextAddress\":\"CP-001-001-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5075135+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":118,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5096848+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":122,\"PalletCode\":\"11\",\"Roadway\":\"SC01_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-001-002-01\",\"TargetAddress\":\"CP-001-001-004-02\",\"CurrentAddress\":\"CP-002-001-002-01\",\"NextAddress\":\"CP-001-001-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5110079+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":119,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5122909+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":123,\"PalletCode\":\"4\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-002-060-001-01\",\"TargetAddress\":\"CP-004-060-003-02\",\"CurrentAddress\":\"CP-002-060-001-01\",\"NextAddress\":\"CP-004-060-003-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5143302+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":120,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T22:09:07.5164686+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1184', N'2025-06-16 22:09:58.980', N'315', N'2025-06-16 22:09:59.293', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":6,"rows":[{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1185', N'2025-06-16 22:10:09.197', N'1489', N'2025-06-16 22:10:10.687', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":124,\"PalletCode\":\"1\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-001-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-001-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"System\",\"CreateDate\":\"2025-06-16T22:09:28.352898+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":125,\"PalletCode\":\"2\",\"Roadway\":\"SC01_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-001-002-02\",\"TargetAddress\":\"CP-003-062-001-01\",\"CurrentAddress\":\"CP-001-001-002-02\",\"NextAddress\":\"CP-003-062-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"System\",\"CreateDate\":\"2025-06-16T22:09:32.6088906+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":126,\"PalletCode\":\"3\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-001-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-001-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"System\",\"CreateDate\":\"2025-06-16T22:09:37.9353221+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":false,"code":0,"message":"有重复任务","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1186', N'2025-06-16 23:01:02.147', N'9043', N'2025-06-16 23:01:11.190', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":129,\"PalletCode\":\"15\",\"Roadway\":\"SC02_CP\",\"TaskType\":300,\"TaskStatus\":300,\"SourceAddress\":\"CP-003-060-001-01\",\"TargetAddress\":\"CP-004-060-004-02\",\"CurrentAddress\":\"CP-003-060-001-01\",\"NextAddress\":\"CP-004-060-004-02\",\"Depth\":1,\"OrderNo\":null,\"Grade\":0,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:00:57.6330097+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":128,\"PalletCode\":\"13\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-004-060-001-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-004-060-001-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":2,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:00:57.6348294+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1187', N'2025-06-16 23:02:29.900', N'5029', N'2025-06-16 23:02:34.930', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":127,\"PalletCode\":\"12\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-002-060-004-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-002-060-004-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:02:29.7799194+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1188', N'2025-06-16 23:04:37.910', N'1184', N'2025-06-16 23:04:39.093', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":9,"rows":[{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1189', N'2025-06-16 23:46:41.043', N'39097', N'2025-06-16 23:47:20.140', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":131,\"PalletCode\":\"6\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-002-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-002-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1218223+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":133,\"PalletCode\":\"16\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-003-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-003-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1241149+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":130,\"PalletCode\":\"5\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1270458+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":132,\"PalletCode\":\"14\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-004-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-004-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:46:39.1297988+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1190', N'2025-06-16 23:47:28.440', N'2080', N'2025-06-16 23:47:30.520', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1191', N'2025-06-16 23:47:32.493', N'14686', N'2025-06-16 23:47:47.180', N'{"QueryString":"","BodyData":""}', N'{"status":true,"code":0,"message":null,"data":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIxIiwiaWF0IjoiMTc1MDA4ODg2NyIsIm5iZiI6IjE3NTAwODg4NjciLCJleHAiOiIxNzUwMDk2MDY3IiwiaXNzIjoiV0lERVNFQVdDU19XTVNfT3duZXIiLCJhdWQiOiJXSURFU0VBV0NTX1dNUyIsImh0dHA6Ly9zY2hlbWFzLm1pY3Jvc29mdC5jb20vd3MvMjAwOC8wNi9pZGVudGl0eS9jbGFpbXMvcm9sZSI6IjEiLCJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9uYW1lIjoiYWRtaW4iLCJUZW5hbnRJZCI6IjAifQ.zpI7LH003MhS4lOf8wSSAhOo2Lctwhk98yFAQhuU-AI","devMessage":null}', NULL, N'http://127.0.0.1:9291/api/User/replaceToken', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1192', N'2025-06-16 23:47:52.450', N'1945', N'2025-06-16 23:47:54.393', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1193', N'2025-06-16 23:50:01.567', N'1968', N'2025-06-16 23:50:03.533', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1194', N'2025-06-16 23:50:07.743', N'1694', N'2025-06-16 23:50:09.437', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1195', N'2025-06-16 23:50:28.703', N'2283', N'2025-06-16 23:50:30.987', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1196', N'2025-06-16 23:51:21.477', N'2341', N'2025-06-16 23:51:23.820', N'{"QueryString":"","BodyData":"{\"page\":1,\"rows\":30,\"sort\":\"CreateDate\",\"order\":\"desc\",\"wheres\":\"[]\"}"}', N'{"total":13,"rows":[{"taskId":51,"taskNum":131,"palletCode":"6","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":52,"taskNum":133,"palletCode":"16","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-003-060-002-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-003-060-002-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":53,"taskNum":130,"palletCode":"5","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":54,"taskNum":132,"palletCode":"14","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-002-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-002-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:47:03","modifier":null,"modifyDate":null},{"taskId":50,"taskNum":127,"palletCode":"12","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-002-060-004-01","targetAddress":"CP-002-061-001-01","currentAddress":"CP-002-060-004-01","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":1,"grade":3,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:02:32","modifier":null,"modifyDate":null},{"taskId":48,"taskNum":129,"palletCode":"15","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-003-060-001-01","targetAddress":"CP-004-060-004-02","currentAddress":"CP-003-060-001-01","nextAddress":"CP-004-060-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":49,"taskNum":128,"palletCode":"13","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-004-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-004-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 23:01:07","modifier":null,"modifyDate":null},{"taskId":43,"taskNum":118,"palletCode":"1","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-001-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-001-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":44,"taskNum":122,"palletCode":"11","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-002-01","targetAddress":"CP-001-001-004-02","currentAddress":"CP-002-001-002-01","nextAddress":"CP-001-001-004-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":45,"taskNum":119,"palletCode":"2","roadway":"SC01_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-001-002-02","targetAddress":"CP-003-062-001-01","currentAddress":"CP-001-001-002-02","nextAddress":"CP-003-062-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":46,"taskNum":123,"palletCode":"4","roadway":"SC02_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-060-001-01","targetAddress":"CP-004-060-003-02","currentAddress":"CP-002-060-001-01","nextAddress":"CP-004-060-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":47,"taskNum":120,"palletCode":"3","roadway":"SC02_CP","taskType":100,"taskStatus":100,"sourceAddress":"CP-001-060-001-02","targetAddress":"CP-002-061-001-01","currentAddress":"CP-001-060-001-02","nextAddress":"CP-002-061-001-01","exceptionMessage":null,"depth":2,"grade":2,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null},{"taskId":42,"taskNum":121,"palletCode":"10","roadway":"SC01_CP","taskType":300,"taskStatus":300,"sourceAddress":"CP-002-001-001-01","targetAddress":"CP-001-001-003-02","currentAddress":"CP-002-001-001-01","nextAddress":"CP-001-001-003-02","exceptionMessage":null,"depth":1,"grade":0,"wmsId":0,"dispatchertime":null,"remark":null,"creater":"System","createDate":"2025-06-16 22:09:12","modifier":null,"modifyDate":null}],"summary":null}', NULL, N'http://127.0.0.1:9291/api/Task/getPageData', N'127.0.0.1', N'admin', N'1') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1197', N'2025-06-16 23:54:08.350', N'18595', N'2025-06-16 23:54:26.943', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":135,\"PalletCode\":\"6\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-002-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-002-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:54:07.938254+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":134,\"PalletCode\":\"5\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-001-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-001-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-16T23:54:07.9395847+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1198', N'2025-06-17 00:04:31.303', N'6608', N'2025-06-17 00:04:37.910', N'{"QueryString":"","BodyData":"[{\"TaskId\":0,\"TaskNum\":141,\"PalletCode\":\"16\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-003-060-002-01\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-003-060-002-01\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":1,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-17T00:04:29.2431378+08:00\",\"Modifier\":null,\"ModifyDate\":null},{\"TaskId\":0,\"TaskNum\":140,\"PalletCode\":\"14\",\"Roadway\":\"SC02_CP\",\"TaskType\":100,\"TaskStatus\":100,\"SourceAddress\":\"CP-004-060-002-02\",\"TargetAddress\":\"CP-002-061-001-01\",\"CurrentAddress\":\"CP-004-060-002-02\",\"NextAddress\":\"CP-002-061-001-01\",\"Depth\":2,\"OrderNo\":null,\"Grade\":3,\"SourceKey\":0,\"Dispatchertime\":null,\"Remark\":null,\"Creater\":\"admin\",\"CreateDate\":\"2025-06-17T00:04:29.251732+08:00\",\"Modifier\":null,\"ModifyDate\":null}]"}', N'{"status":true,"code":0,"message":"添加任务成功","data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/ReceiveTask/', N'127.0.0.1', N'', N'0') GO INSERT INTO [dbo].[Sys_Log] ([Id], [BeginDate], [ElapsedTime], [EndDate], [RequestParam], [ResponseParam], [Success], [Url], [UserIP], [UserName], [UserId]) VALUES (N'1199', N'2025-06-17 00:29:38.377', N'3471', N'2025-06-17 00:29:41.847', N'{"QueryString":"?taskNum=140","BodyData":"\"\""}', N'{"status":true,"code":0,"message":null,"data":null,"devMessage":null}', NULL, N'http://127.0.0.1:9291/api/Task/StackCraneTaskCompleted', N'127.0.0.1', N'', N'0') GO SET IDENTITY_INSERT [dbo].[Sys_Log] OFF GO -- ---------------------------- -- Table structure for Sys_Menu -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Menu]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Menu] GO CREATE TABLE [dbo].[Sys_Menu] ( [MenuId] int IDENTITY(1,1) NOT NULL, [MenuName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [Auth] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Icon] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [Description] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Enable] tinyint NULL, [TableName] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [ParentId] int NOT NULL, [Url] varchar(50) COLLATE Chinese_PRC_CI_AS NULL, [OrderNo] int NULL, [MenuType] int NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_Menu] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'菜单ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'MenuId' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'MenuName' GO EXEC sp_addextendedproperty 'MS_Description', N'权限', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Auth' GO EXEC sp_addextendedproperty 'MS_Description', N'图标', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Icon' GO EXEC sp_addextendedproperty 'MS_Description', N'描述', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Description' GO EXEC sp_addextendedproperty 'MS_Description', N'是否启用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'表名', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'TableName' GO EXEC sp_addextendedproperty 'MS_Description', N'父级ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'路径', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Url' GO EXEC sp_addextendedproperty 'MS_Description', N'排序号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'OrderNo' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'MenuType' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单配置', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Menu' GO -- ---------------------------- -- Records of Sys_Menu -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Menu] ON GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'用户管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-user', NULL, N'1', N'.', N'0', NULL, N'4000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:07.567') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'2', N'用户管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_User', N'1', N'/Sys_User', N'2000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:14.030') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'3', N'权限管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'ivu-icon ivu-icon-ios-boat', NULL, N'1', N',', N'1', N'/permission', N'1000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:20.727') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'4', N'角色管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Role', N'1', N'/Sys_Role', N'900', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:23.177') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'5', N'系统设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-setting', NULL, N'1', N'系统设置', N'0', N'/', N'0', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:38.703') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'6', N'菜单设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Menu', N'5', N'/sysmenu', N'10', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:42.007') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'7', N'下拉框绑定设置', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Dictionary', N'5', N'/Sys_Dictionary', N'10', N'99', N'admin', N'2024-10-21 10:17:39.367', NULL, NULL) GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'8', N'日志管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'xxx', N'0', N'/', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'9', N'接口日志', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', NULL, NULL, N'1', N'Sys_Log', N'8', N'/Sys_Log/Manager', N'0', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:34.273') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'10', N'设备管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'', N'0', N'/', N'8000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'11', N'设备信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DeviceInfo', N'10', N'/deviceInfo', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'12', N'任务管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'', N'0', N'/', N'7000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'13', N'任务信息', N'[{"text":"查询","value":"Search"},{"text":"导出","value":"Export"},{"text":"回滚到上一步","value":"Previous"},{"text":"跳转到下一步","value":"Next"},{"text":"手动完成","value":"TaskHandCompleted"},{"text":"取消任务","value":"TaskHandCancel"}]', N'el-icon-date', NULL, N'1', N'Dt_Task', N'12', N'/task', N'500', NULL, N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-11-04 11:10:13.903') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'14', N'设备协议信息', N'[{"text":"查询","value":"Search"},{"text":"删除","value":"Delete"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DeviceProtocol', N'10', N'/deviceProtocol', N'500', NULL, N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-11-06 16:03:41.397') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'15', N'设备协议明细信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DeviceProtocolDetail', N'10', N'/deviceProtocolDetail', N'500', NULL, N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-11-06 16:03:47.953') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'16', N'调度服务配置信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_DispatchInfo', N'10', N'/dispatchInfo', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'17', N'基础管理', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'', N'0', N'/', N'7000', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'18', N'路由配置信息', N'[{"text":"查询","value":"Search"},{"text":"新建","value":"Add"},{"text":"删除","value":"Delete"},{"text":"编辑","value":"Update"},{"text":"查看全部路由","value":"ViewAllRouter"},{"text":"路由配置","value":"AddRouters"},{"text":"导入","value":"Import"},{"text":"导出","value":"Export"}]', N'el-icon-date', NULL, N'1', N'Dt_Router', N'17', N'/router', N'500', N'99', N'admin', N'2024-10-21 10:17:39.367', N'admin', N'2024-05-09 15:50:30.557') GO INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Auth], [Icon], [Description], [Enable], [TableName], [ParentId], [Url], [OrderNo], [MenuType], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'19', N'任务历史信息', N'[{"text":"查询","value":"Search"}]', N'', NULL, N'1', N'/Task_Hty', N'12', N'/task_hty', N'0', NULL, N'admin', N'2024-11-01 08:45:17.247', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_Menu] OFF GO -- ---------------------------- -- Table structure for Sys_Role -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Role]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Role] GO CREATE TABLE [dbo].[Sys_Role] ( [RoleId] int IDENTITY(1,1) NOT NULL, [DeptId] int NULL, [Enable] tinyint NOT NULL, [ParentId] int NOT NULL, [RoleName] varchar(50) COLLATE Chinese_PRC_CI_AS NOT NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_Role] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'RoleId' GO EXEC sp_addextendedproperty 'MS_Description', N'部门主键', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'DeptId' GO EXEC sp_addextendedproperty 'MS_Description', N'是否启用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'父ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'ParentId' GO EXEC sp_addextendedproperty 'MS_Description', N'角色名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'RoleName' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'角色表', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Role' GO -- ---------------------------- -- Records of Sys_Role -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Role] ON GO INSERT INTO [dbo].[Sys_Role] ([RoleId], [DeptId], [Enable], [ParentId], [RoleName], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'111', N'1', N'0', N'超级管理员', N'超级管理员', N'2024-10-21 10:17:42.397', N'admin', N'2024-04-29 13:53:44.717') GO SET IDENTITY_INSERT [dbo].[Sys_Role] OFF GO -- ---------------------------- -- Table structure for Sys_RoleAuth -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_RoleAuth]') AND type IN ('U')) DROP TABLE [dbo].[Sys_RoleAuth] GO CREATE TABLE [dbo].[Sys_RoleAuth] ( [AuthId] int IDENTITY(1,1) NOT NULL, [AuthValue] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [MenuId] int NOT NULL, [RoleId] int NULL, [UserId] int NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_RoleAuth] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'角色身份验证ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'AuthId' GO EXEC sp_addextendedproperty 'MS_Description', N'用户权限', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'AuthValue' GO EXEC sp_addextendedproperty 'MS_Description', N'菜单ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'MenuId' GO EXEC sp_addextendedproperty 'MS_Description', N'角色ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'RoleId' GO EXEC sp_addextendedproperty 'MS_Description', N'用户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'UserId' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'角色身份验证管理', 'SCHEMA', N'dbo', 'TABLE', N'Sys_RoleAuth' GO -- ---------------------------- -- Records of Sys_RoleAuth -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_RoleAuth] ON GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'136', N'Search,Add,Delete,Update,Import,Export', N'1', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'137', N'Search,Add,Delete,Update,Import,Export', N'2', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-04-29 15:04:07.830') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'138', N'Search,Add,Delete,Update,Import,Export', N'3', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'140', N'Search,Add,Delete,Update,Import,Export', N'4', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'141', N'Search,Add,Delete,Update,Import,Export', N'5', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'143', N'Search,Add,Delete,Update,Import,Export', N'6', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'144', N'Search,Add,Delete,Update,Import,Export', N'7', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-04-29 15:00:47.033') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'146', N'Search,Add,Delete,Update,Import,Export', N'8', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-04-29 15:04:07.830') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'148', N'Search,Add,Delete,Update,Import,Export', N'9', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-02-22 09:31:16.363') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'153', N'Search,Add,Delete,Update,Import,Export', N'10', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'154', N'Search,Add,Delete,Update,Import,Export', N'12', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'155', N'Search,Add,Previous,Next,Delete,Update,Import,Export', N'13', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-10-22 13:58:39.937') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'156', N'Search,Add,Delete,Update,Import,Export', N'11', N'1', NULL, N'admin', N'2024-10-21 10:17:45.223', N'admin', N'2024-10-22 13:58:39.937') GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'157', N'Search', N'11', N'2', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'158', N'Search,Add,Delete,Update,Import,Export', N'10', N'2', NULL, N'admin', N'2024-10-21 10:17:45.223', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'159', N'Search,Add,Delete,Update,Import,Export', N'17', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'160', N'Search,Add,Delete,Update,ViewAllRouter,AddRouters,Import,Export', N'18', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'161', N'Search,Add,Previous,Next,Delete,Update,Import,Export', N'13', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'162', N'Search,Add,Delete,Update,Import,Export', N'11', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'163', N'Search,Add,Delete,Update,Import,Export', N'14', N'1', NULL, N'admin', N'2024-10-22 13:58:39.957', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'164', N'Search,Add,Delete,Update,Import,Export', N'15', N'1', NULL, N'admin', N'2024-10-22 13:58:39.960', NULL, NULL) GO INSERT INTO [dbo].[Sys_RoleAuth] ([AuthId], [AuthValue], [MenuId], [RoleId], [UserId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'165', N'Search,Add,Delete,Update,Import,Export', N'16', N'1', NULL, N'admin', N'2024-10-22 13:58:39.960', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_RoleAuth] OFF GO -- ---------------------------- -- Table structure for Sys_Tenant -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_Tenant]') AND type IN ('U')) DROP TABLE [dbo].[Sys_Tenant] GO CREATE TABLE [dbo].[Sys_Tenant] ( [TenantId] int IDENTITY(1,1) NOT NULL, [TenantName] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [TenantType] int NOT NULL, [DbType] int NOT NULL, [ConnectionString] varchar(1000) COLLATE Chinese_PRC_CI_AS NOT NULL, [Status] int NOT NULL, [Remark] varchar(2000) COLLATE Chinese_PRC_CI_AS NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_Tenant] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'租户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'TenantId' GO EXEC sp_addextendedproperty 'MS_Description', N'租户名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'TenantName' GO EXEC sp_addextendedproperty 'MS_Description', N'租户类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'TenantType' GO EXEC sp_addextendedproperty 'MS_Description', N'数据库类型', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'DbType' GO EXEC sp_addextendedproperty 'MS_Description', N'连接字符串', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'ConnectionString' GO EXEC sp_addextendedproperty 'MS_Description', N'状态', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Status' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'租户', 'SCHEMA', N'dbo', 'TABLE', N'Sys_Tenant' GO -- ---------------------------- -- Records of Sys_Tenant -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_Tenant] ON GO SET IDENTITY_INSERT [dbo].[Sys_Tenant] OFF GO -- ---------------------------- -- Table structure for Sys_User -- ---------------------------- IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[Sys_User]') AND type IN ('U')) DROP TABLE [dbo].[Sys_User] GO CREATE TABLE [dbo].[Sys_User] ( [User_Id] int IDENTITY(1,1) NOT NULL, [UserName] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [Role_Id] int NOT NULL, [RoleName] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [PhoneNo] varchar(11) COLLATE Chinese_PRC_CI_AS NULL, [Remark] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [UserPwd] varchar(200) COLLATE Chinese_PRC_CI_AS NOT NULL, [UserTrueName] varchar(100) COLLATE Chinese_PRC_CI_AS NOT NULL, [DeptName] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [Dept_Id] int NULL, [Email] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [Enable] tinyint NOT NULL, [Gender] int NULL, [HeadImageUrl] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [LastModifyPwdDate] datetime NULL, [Address] varchar(200) COLLATE Chinese_PRC_CI_AS NULL, [AuditDate] datetime NULL, [AuditStatus] int NULL, [Auditor] varchar(100) COLLATE Chinese_PRC_CI_AS NULL, [Token] varchar(500) COLLATE Chinese_PRC_CI_AS NULL, [TenantId] bigint DEFAULT '0' NOT NULL, [Creater] varchar(255) COLLATE Chinese_PRC_CI_AS NOT NULL, [CreateDate] datetime NOT NULL, [Modifier] varchar(255) COLLATE Chinese_PRC_CI_AS NULL, [ModifyDate] datetime NULL ) GO ALTER TABLE [dbo].[Sys_User] SET (LOCK_ESCALATION = TABLE) GO EXEC sp_addextendedproperty 'MS_Description', N'用户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'User_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'帐号', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'UserName' GO EXEC sp_addextendedproperty 'MS_Description', N'角色ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Role_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'角色名称', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'RoleName' GO EXEC sp_addextendedproperty 'MS_Description', N'电话', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'PhoneNo' GO EXEC sp_addextendedproperty 'MS_Description', N'备注', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Remark' GO EXEC sp_addextendedproperty 'MS_Description', N'密码', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'UserPwd' GO EXEC sp_addextendedproperty 'MS_Description', N'真实姓名', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'UserTrueName' GO EXEC sp_addextendedproperty 'MS_Description', N'部门', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'DeptName' GO EXEC sp_addextendedproperty 'MS_Description', N'部门ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Dept_Id' GO EXEC sp_addextendedproperty 'MS_Description', N'邮箱', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Email' GO EXEC sp_addextendedproperty 'MS_Description', N'是否可用', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Enable' GO EXEC sp_addextendedproperty 'MS_Description', N'性别', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Gender' GO EXEC sp_addextendedproperty 'MS_Description', N'头像', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'HeadImageUrl' GO EXEC sp_addextendedproperty 'MS_Description', N'最后密码修改时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'LastModifyPwdDate' GO EXEC sp_addextendedproperty 'MS_Description', N'地址', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Address' GO EXEC sp_addextendedproperty 'MS_Description', N'审核时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'AuditDate' GO EXEC sp_addextendedproperty 'MS_Description', N'审核状态', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'AuditStatus' GO EXEC sp_addextendedproperty 'MS_Description', N'审核人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Auditor' GO EXEC sp_addextendedproperty 'MS_Description', N'令牌', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Token' GO EXEC sp_addextendedproperty 'MS_Description', N'租户ID', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'TenantId' GO EXEC sp_addextendedproperty 'MS_Description', N'创建者', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Creater' GO EXEC sp_addextendedproperty 'MS_Description', N'创建时间', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'CreateDate' GO EXEC sp_addextendedproperty 'MS_Description', N'修改人', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'Modifier' GO EXEC sp_addextendedproperty 'MS_Description', N'修改日期', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User', 'COLUMN', N'ModifyDate' GO EXEC sp_addextendedproperty 'MS_Description', N'用户表', 'SCHEMA', N'dbo', 'TABLE', N'Sys_User' GO -- ---------------------------- -- Records of Sys_User -- ---------------------------- SET IDENTITY_INSERT [dbo].[Sys_User] ON GO INSERT INTO [dbo].[Sys_User] ([User_Id], [UserName], [Role_Id], [RoleName], [PhoneNo], [Remark], [UserPwd], [UserTrueName], [DeptName], [Dept_Id], [Email], [Enable], [Gender], [HeadImageUrl], [LastModifyPwdDate], [Address], [AuditDate], [AuditStatus], [Auditor], [Token], [TenantId], [Creater], [CreateDate], [Modifier], [ModifyDate]) VALUES (N'1', N'admin', N'1', N'超级管理员', N'', N'', N'j79rYYvCz4vdhcboB1Ausg==', N'超级管理员', N'', N'0', N'', N'1', N'1', N'', N'2024-04-16 19:58:55.000', N'系统服务器', N'2024-04-16 00:54:06.000', N'1', N'超级管理员', N'', N'0', N'系统', N'2024-10-21 10:17:53.730', NULL, NULL) GO SET IDENTITY_INSERT [dbo].[Sys_User] OFF GO -- ---------------------------- -- Auto increment value for Dt_DeviceInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_DeviceInfo]', RESEED, 1005) GO -- ---------------------------- -- Primary Key structure for table Dt_DeviceInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_DeviceInfo] ADD CONSTRAINT [PK_Dt_DeviceInfo_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_DeviceProtocol -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_DeviceProtocol]', RESEED, 19) GO -- ---------------------------- -- Primary Key structure for table Dt_DeviceProtocol -- ---------------------------- ALTER TABLE [dbo].[Dt_DeviceProtocol] ADD CONSTRAINT [PK_Dt_DeviceProtocol_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_DeviceProtocolDetail -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_DeviceProtocolDetail]', RESEED, 40) GO -- ---------------------------- -- Primary Key structure for table Dt_DeviceProtocolDetail -- ---------------------------- ALTER TABLE [dbo].[Dt_DeviceProtocolDetail] ADD CONSTRAINT [PK_Dt_DeviceProtocolDetail_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_DispatchInfo -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_DispatchInfo]', RESEED, 1007) GO -- ---------------------------- -- Primary Key structure for table Dt_DispatchInfo -- ---------------------------- ALTER TABLE [dbo].[Dt_DispatchInfo] ADD CONSTRAINT [PK_Dt_DispatchInfo_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_Router -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_Router]', RESEED, 61) GO -- ---------------------------- -- Primary Key structure for table Dt_Router -- ---------------------------- ALTER TABLE [dbo].[Dt_Router] ADD CONSTRAINT [PK_Dt_Router_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_Task -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_Task]', RESEED, 62) GO -- ---------------------------- -- Primary Key structure for table Dt_Task -- ---------------------------- ALTER TABLE [dbo].[Dt_Task] ADD CONSTRAINT [PK_Dt_Task_TaskId] PRIMARY KEY CLUSTERED ([TaskId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_Task_Hty -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_Task_Hty]', RESEED, 3218) GO -- ---------------------------- -- Primary Key structure for table Dt_Task_Hty -- ---------------------------- ALTER TABLE [dbo].[Dt_Task_Hty] ADD CONSTRAINT [PK__Dt_Task___7C6949B1355E7676] PRIMARY KEY CLUSTERED ([TaskId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Dt_TaskExecuteDetail -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Dt_TaskExecuteDetail]', RESEED, 11781) GO -- ---------------------------- -- Primary Key structure for table Dt_TaskExecuteDetail -- ---------------------------- ALTER TABLE [dbo].[Dt_TaskExecuteDetail] ADD CONSTRAINT [PK_Dt_TaskExecuteDetail_TaskDetailId] PRIMARY KEY CLUSTERED ([TaskDetailId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Department -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Department]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Sys_Department -- ---------------------------- ALTER TABLE [dbo].[Sys_Department] ADD CONSTRAINT [PK_Sys_Department_DepartmentId] PRIMARY KEY CLUSTERED ([DepartmentId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Dictionary -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Dictionary]', RESEED, 75) GO -- ---------------------------- -- Primary Key structure for table Sys_Dictionary -- ---------------------------- ALTER TABLE [dbo].[Sys_Dictionary] ADD CONSTRAINT [PK_Sys_Dictionary_DicId] PRIMARY KEY CLUSTERED ([DicId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_DictionaryList -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_DictionaryList]', RESEED, 457) GO -- ---------------------------- -- Primary Key structure for table Sys_DictionaryList -- ---------------------------- ALTER TABLE [dbo].[Sys_DictionaryList] ADD CONSTRAINT [PK_Sys_DictionaryList_DicListId] PRIMARY KEY CLUSTERED ([DicListId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Log -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Log]', RESEED, 1199) GO -- ---------------------------- -- Primary Key structure for table Sys_Log -- ---------------------------- ALTER TABLE [dbo].[Sys_Log] ADD CONSTRAINT [PK_Sys_Log_Id] PRIMARY KEY CLUSTERED ([Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Menu -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Menu]', RESEED, 19) GO -- ---------------------------- -- Primary Key structure for table Sys_Menu -- ---------------------------- ALTER TABLE [dbo].[Sys_Menu] ADD CONSTRAINT [PK_Sys_Menu_MenuId] PRIMARY KEY CLUSTERED ([MenuId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Role -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Role]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Sys_Role -- ---------------------------- ALTER TABLE [dbo].[Sys_Role] ADD CONSTRAINT [PK_Sys_Role_RoleId] PRIMARY KEY CLUSTERED ([RoleId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_RoleAuth -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_RoleAuth]', RESEED, 165) GO -- ---------------------------- -- Primary Key structure for table Sys_RoleAuth -- ---------------------------- ALTER TABLE [dbo].[Sys_RoleAuth] ADD CONSTRAINT [PK_Sys_RoleAuth_AuthId] PRIMARY KEY CLUSTERED ([AuthId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_Tenant -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_Tenant]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Sys_Tenant -- ---------------------------- ALTER TABLE [dbo].[Sys_Tenant] ADD CONSTRAINT [PK_Sys_Tenant_TenantId] PRIMARY KEY CLUSTERED ([TenantId]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO -- ---------------------------- -- Auto increment value for Sys_User -- ---------------------------- DBCC CHECKIDENT ('[dbo].[Sys_User]', RESEED, 1) GO -- ---------------------------- -- Primary Key structure for table Sys_User -- ---------------------------- ALTER TABLE [dbo].[Sys_User] ADD CONSTRAINT [PK_Sys_User_User_Id] PRIMARY KEY CLUSTERED ([User_Id]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] GO